Page 306 - 3-3
P. 306

//Context  생성
                  Context ct;


                  //DB  변수 생성
                  String myJSON;
                  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 = "Control_Flexibility";


                  //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/Control.php");
                      //Fragment DB  레이아웃 리턴
                      return view;
                  }


                  //JSON 을 파싱하는 메서드


                                                        - 306 -
   301   302   303   304   305   306   307   308   309   310   311