Page 71 - 3-3
P. 71

SharedPreferences pref = getSharedPreferences("pref",MODE_PRIVATE);


                                                              SharedPreferences.Editor editor = pref.edit();
                                                                      editor.remove("ipd");


                                                                      // 저장되어있는 ip    값을 삭제.
                                                                      editor.commit();


                                                                      if(flag!=0){
                                                                      // 이미 통신중이라면
                                                                              th.Close();
                                                                              // 통신 중단.
                                                                              flag=0;
                                                                      }
                                                                      System.exit(0);
                                                                      // 어플리케이션 종료
                                                                      break;
                                                              case R.id.feedConfirmBtn:
                                                                      // 데이터베이스 버튼


                                                                      if(flag!=0){
                                                                      // 통신 중일 때.


                                                                              th.Close();
                                                                              // 통신 종료.




                                                                              flag=0;
                                                                              // 이를 저장.


                                                                      }
              Intent confirmIntent = new Intent(this, DataBaseView.class);


              confirmIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);


                      startActivity(confirmIntent);
                                                                      // 데이터 베이스 페이지로 이동.
                                                                      break;
                                                      }
                                                      }


                                                      @Override
                                                      public void finish() {




                                                           - 71 -
   66   67   68   69   70   71   72   73   74   75   76