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

정보통신기기  프로젝트


                                                    private  String  ips="";


                                                    MyThread  th  =  null;
                                                    //새  스레드  선언


                                                    @Override
                                                    protected  void  onCreate(Bundle  savedInstanceState)  {
                                                    super.onCreate(savedInstanceState);
                                                    requestWindowFeature(Window.FEATURE_NO_TITLE);
                                                    //타이틀  바


            setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
            //화면  가로  고정


                                                    setContentView(R.layout.activity_main);
                                                    //main  레이아웃


            getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
            //화면  켜진  상태  유지


                                                    start  =  (ImageButton)  findViewById(R.id.startBtn);
                                                    network  =  (ImageButton)  findViewById(R.id.networkBtn);
                                                    end  =  (ImageButton)  findViewById(R.id.endBtn);
                                                    confirm                  =                 (ImageButton)
            findViewById(R.id.feedConfirmBtn);
                                                    light  =  (ImageButton)  findViewById(R.id.lightBtn);
                                                    wifi  =  (ImageButton)findViewById(R.id.wifiBtn);
                                                    //버튼  변수  설정


                                                    start.setOnClickListener(this);
                                                    network.setOnClickListener(this);
                                                    end.setOnClickListener(this);
                                                    confirm.setOnClickListener(this);
                                                    light.setOnClickListener(this);
                                                    wifi.setOnClickListener(this);
                                                    getPreferences();
                                                    //변수  사용  선언


                                                    if(ips!=""){
                                                            wifi.setVisibility(View.VISIBLE);
                                                    }




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