Page 615 - 3-3
P. 615

GetData task;


                   protected void onCreate(Bundle savedInstanceState) {
                       super.onCreate(savedInstanceState);
                       setContentView(R.layout.data_main2); // data_main 을 인스턴스화해서 출력준비


                       mTextViewResult = (TextView) findViewById(R.id.textView_main_result2); //  결과값
              출력용 TextView
                       mlistView = (ListView) findViewById(R.id.listView_db2); // 정보 표시 listview
                       NameView = (TextView) findViewById(R.id.sucess_login2); //  반정보 표시용 View


                       //mArrayList = new ArrayList<>();
                       Intent rintent = getIntent(); //  정보 받아오기위한 intent
                       dates = rintent.getExtras().getString("date"); //  날짜값을 Key 값 date 로 받아옴
                       name = rintent.getExtras().getString("name2"); //  이름값을 Key  값 name2  로 받아옴
                       IP = rintent.getExtras().getString("IP"); // IP 주소값을 Key 값 IP 로 받아옴
                       WebIP = rintent.getExtras().getString("WebIP"); // WEB 주소를 Key 값 WebIP  로 받아옴
                       PORT = rintent.getExtras().getInt("PORT"); // PORT 값을 Key 값 PORT  로 받아옴




                       NameView.setText(name); //  이름에 맞게 반 정보를 표시해줌


                       TAG_JSON = dates + "Attendance";//    값을 가져올 php     파일로 작성된 웹사이트 주소의
              날짜값을 입력받은 날짜값으로 설정
                       //task = new GetData();
                       //task.execute("http://192.168.0.119/project/smart-class/android/Attendance.php?date="
              + dates);


                       modifybutton = (Button) findViewById(R.id.modify);//  정보수정버튼 객체
                       modifybutton.setOnClickListener(new View.OnClickListener() {
                           @Override
                           public void onClick(View view) {
                               Intent intentID = new Intent(getApplicationContext(), IDActivity.class); //  값
              전달하기위한 intent
                               intentID.putExtra("dates", dates); //  날짜값 전달
                               intentID.putExtra("IP", IP); // IP 주소 전달
                               intentID.putExtra("PORT", PORT); // PORT 값 전달
                               startActivity(intentID); //  화면전환


                           }
                       });
                   }


                   @Override
                   protected void onPause() {


                                                          - 615 -
   610   611   612   613   614   615   616   617   618   619   620