Page 290 - 3-3
P. 290

//Fragment DB  레이아웃 리턴
                      return view;
                  }


                  //JSON 을 파싱하는 메서드
                  protected void showList() {
                      // 예외 처리
                      try {
                          //JSON  객체 생성
                          JSONObject jsonObj = new JSONObject(myJSON);
                          //TAG_JSON  과 일치하는 DB      값을 불러오기
                          peoples = jsonObj.getJSONArray(TAG_JSON);


                          // 데이터베이스에서 해당 데이터 찾기
                          for (int i = 0; i < peoples.length(); i++) {
                              //JSON  객체 찾기
                              JSONObject c = peoples.getJSONObject(i);
                              // 아이디 불러오기
                              String id = c.getString(TAG_ID);
                              // 이름 불러오기
                              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}


                                                        - 290 -
   285   286   287   288   289   290   291   292   293   294   295