Page 596 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 596

정보통신기기  프로젝트




                                                            case  R.id.startBtn:
                                                                    //order  페이지로  이동.
                                                                    if(flag!=0){
                                                                    //통신  중일  때.
                                                                            th.Close();
                                                                            //통신을  중단.
                                                                            flag=0;
                                                                            //통신이  중단되었음을  저장.
                                                                    }
                                                    Intent  startIntent  =  new  Intent(this,  Order.class);
            //이동할  페이지  결정


            startIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                                                                    startActivity(startIntent);
                                                                    //order  페이지로  이동.
                                                                    break;


                                                            case  R.id.lightBtn:
                                                            //해당  페이지  내의  화면  밝기를  최대치로.


            WindowManager.LayoutParams  iparam  =  getWindow().getAttributes();
                                                                    if (l  ==  0) {
                                                    iparam.screenBrightness  =  -1;


            getWindow().setAttributes(iparam);
                                                                            l  =  l  +  1;
                                                                    }  else if  (l  ==  1) {
                                                    iparam.screenBrightness  =  1f;


            getWindow().setAttributes(iparam);
                                                                            l  =  0;
                                                                    }  else  {
                                                                    }
                                                                    Log.d("TAG",  "LIGHT");
                                                                    break;


                                                            case  R.id.networkBtn:
                                                            //네트워크  페이지로  이동.
                                                                    if(flag!=0){
                                                                    //통신  중일  때.




                                                         -  589  -                             정보통신기기과
   591   592   593   594   595   596   597   598   599   600   601