Page 282 - 3-3
P. 282

String name = c.getString(TAG_NAME);
                              // 기록 불러오기
                              String rec = c.getString(TAG_REC);


                              // 해쉬 맵 생성
                              HashMap<String, String> persons = new HashMap<String, String>();
                              // 해쉬 맵에 아이디 추가
                              persons.put(TAG_ID, id);
                              // 해쉬 맵에 이름 추가
                              persons.put(TAG_NAME, name);
                              // 해쉬 맵에 기록 추가
                              persons.put(TAG_REC, rec);


                              // 리스트에 해쉬 맵의 내용 추가
                              personList.add(persons);
                          }


                          // 리스트 어댑터 생성
                          ListAdapter adapter = new SimpleAdapter(
                                  //List 를 작성할 TextView   가 있는 item_list_mooin   을 불러오기
                                  ct, personList, R.layout.item_list_mooin,
                                  // 아이디 이름 기록을 추가,  ,
                                  new String[]{TAG_ID, TAG_NAME, TAG_REC},
                                  //TextView  추가
                                  new int[]{R.id.id, R.id.name, R.id.rec}
                          );


                          // 리스트 어댑터를 리스트로 불러오기
                          list.setAdapter(adapter);
                      }
                      // 예외 발생시
                      catch (JSONException e) {
                          // 오류 메시지 출력
                          e.printStackTrace();
                      }
                  }


                  // 데이터 불러오기 메서드 매개변수(            url  문자열)
                  public void getData(String url) {
                      // 백그라운드 스레드를 사용하기 위한 클래스 생성
                      class GetDataJSON extends AsyncTask<String, Void, String> {


                          @Override
                          // 백그라운드 스레드로 처리하기 위한 메서드(String...              은 가변인수)
                          protected String doInBackground(String... params) {


                                                        - 282 -
   277   278   279   280   281   282   283   284   285   286   287