Page 303 - 3-3
P. 303

//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}
                            );


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


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


                                                          - 303 -
   298   299   300   301   302   303   304   305   306   307   308