Page 285 - 3-3
P. 285

private static final String TAG_ID = "StudentID";
                    private static final String TAG_NAME = "Name";
                    private static final String TAG_REC = "Record";
                    private static final String TAG_JSON = "Circuit_Run50M";


                    //JSON  변수 생성
                    JSONArray peoples = null;
                    ArrayList<HashMap<String, String>> personList;


                    // 리스트뷰 생성
                    ListView list;


                    @Nullable
                    @Override
                    public  View   onCreateView(LayoutInflater   inflater,  @Nullable  ViewGroup    container,
              @Nullable Bundle savedInstanceState) {
                        //DB  레이아웃을 불러오기
                        View view = inflater.inflate(R.layout.fragment_db, container, false);


                        // 번들 생성
                        Bundle bundle = getArguments();
                        // WebIP  변수에 SelectSubject1.java  에서 "WebIP"   이름으로 넘긴 Extra      정보를 받아옴
                        String WebIP = bundle.getString("WebIP");


                        // 콘텍스트 저장
                        ct = container.getContext();


                        // 레이아웃에서 리스트뷰를 불러오기
                        list = (ListView) view.findViewById(R.id.listView);
                        // listView  클릭 불가능
                        list.setSelector(R.drawable.selector);
                        // 어레이리스트 생성
                        personList = new ArrayList<HashMap<String, String>>();
                        // 웹에서 DB  를 불러오기
                        getData("http://" + WebIP + "/project/strength/android/Circuit.php");
                        //Fragment DB   레이아웃 리턴
                        return view;
                    }


                    //JSON 을 파싱하는 메서드
                    protected void showList() {
                        // 예외 처리
                        try {
                            //JSON  객체 생성
                            JSONObject jsonObj = new JSONObject(myJSON);


                                                          - 285 -
   280   281   282   283   284   285   286   287   288   289   290