Page 289 - 3-3
P. 289
import java.util.HashMap;
//DB5 클래스
public class DB5 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 = "Circuit_PushUp";
//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");
- 289 -