Page 299 - 3-3
P. 299

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) {


                                // 매개변수로 불러온 url      을 저장
                                String uri = params[0];


                                //BufferedReader  객체 생성 초기값.       = null


                                                          - 299 -
   294   295   296   297   298   299   300   301   302   303   304