Page 605 - 3-3
P. 605

startActivity(intent); //  화면이동
                                   }
                               }
                       );


                       writeDB.setOnClickListener( // DB 수정 버튼이 클릭됬을경우
                               new Button.OnClickListener() {
                                   public void onClick(View v) {
                                       Intent intent = new Intent(getApplicationContext(),
              WDataBaseActivity.class); // WDataBaseActivity 로 이동하는 intent
                                       intent.putExtra("name2",name); //  이름값을 Key   값 name2  으로 전달
                                       intent.putExtra("IP",IP); // IP 주소를 Key 값 IP 로 전달
                                       intent.putExtra("WebIP",WebIP); // Web 주소를 Key  값 WebIP  로 전달
                                       intent.putExtra("PORT",PORT); // PORT 를 Key 값 PORT   로 전달
                                       startActivity(intent); //  화면이동


                                   }
                               }
                       );
                       back.setOnClickListener( //  뒤로가기 버튼이 클릭됬을경우
                               new Button.OnClickListener() {
                                   public void onClick(View v) {
                                       finish(); // Class_Main  엑티비티 종료
                                   }
                               }
                       );


                   }
               }




               package com.helloworld.smartschool;


               import android.content.Intent; // 액티비티 호출 클래스
               import android.os.Bundle; // 문자열로 된 키와 여러 가지의 타입의 값을 저장하는 Map                      클래스
               import android.support.annotation.NonNull; //null 값 허용하지 않게 하는 클래스
               import android.support.v7.app.AppCompatActivity; // 안드로이드 하위버전 액티비티 지원 클래스
               import android.widget.CalendarView; // 달력 객체 사용 클래스
               import android.widget.Toast; // 토스트 사용 클래스




               public class DataBaseActivity extends AppCompatActivity {
                   String month12; //  월
                   String day; //  일
                   String date; //  날짜값


                                                          - 605 -
   600   601   602   603   604   605   606   607   608   609   610