Page 608 - 3-3
P. 608

private String TAG_Fir = "First";                 //1 교시
                 private String TAG_Sec = "Second";                   //2 교시
                 private String TAG_Thi = "Third";                  //3 교시
                 private String TAG_Fou = "Fourth";                  //4 교시
                 private String TAG_Fif = "Fifth";                 //5 교시
                 private String TAG_Six = "Sixth";                 //6 교시
                 private String TAG_Sev = "Seventh";                 //7 교시
                 private TextView mTextViewResult;                   // 결과값 표시용 textview
                 ArrayList<HashMap<String, String>> mArrayList;        //hash 맵방식 arraylist
                 ListView mlistView; //  정보표시 listView
                 String mJsonString; //  결과값 저장변수
                 TextView NameView; //  반 표시용 TextView


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


                     mTextViewResult = (TextView) findViewById(R.id.textView_main_result);
                     // 결과값 표시용 textview
                     mlistView = (ListView) findViewById(R.id.listView_db);
                     // 정보 표시 listview
                     mArrayList = new ArrayList<>();
                     // 값 저장용 배열
                     NameView = (TextView) findViewById(R.id.sucess_login);
                     // 반 표시용 TextView


                     Intent rintent = getIntent(); // 값을 받아오기위한 intent
                     date=rintent.getExtras().getString("date");
                     // 날짜정보를 Key    값 date String 형으로 받아옴
                     name=rintent.getExtras().getString("name");
                     // 이름값을 Key   값 name  으로 받아옴
                     WebIP = rintent.getExtras().getString("WebIP");
                     //Web 주소값을 Key    값 WebIP  로 받아옴


                     NameView.setText(name); //  반 표시하는 TextView     의 Text 를 name   변수로 설정


                     DataActivity.GetData task = new DataActivity.GetData(); //  값을 비동기로 처리하기위해
            받음
                     TAG_JSON = date+"Attendance";
                     //  값을 가져올 php    파일로 작성된 웹사이트 주소의 날짜값을 입력받은 날짜값으로 설정
                     task.execute("http://"+WebIP+"/project/smart-class/android/Attendance.php?date=" +
            date);
                     // 쓰레드에 웹사이트 주소를 실행


                 }


                                                        - 608 -
   603   604   605   606   607   608   609   610   611   612   613