Page 272 - 3-3
P. 272

import java.io.BufferedReader;
              import java.io.InputStreamReader;
              import java.net.HttpURLConnection;
              import java.net.URL;
              import java.util.ArrayList;
              import java.util.HashMap;


              //DB1  클래스
              public class DB1 extends Fragment {


                  //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 = "Communication_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  클릭 불가능


                                                        - 272 -
   267   268   269   270   271   272   273   274   275   276   277