Page 281 - 3-3
P. 281
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/Communication.php");
//Fragment DB 레이아웃 리턴
return view;
}
//JSON 을 파싱하는 메서드
protected void showList() {
// 예외 처리
try {
//JSON 객체 생성
JSONObject jsonObj = new JSONObject(myJSON);
//TAG_JSON 과 일치하는 DB 값을 불러오기
peoples = jsonObj.getJSONArray(TAG_JSON);
// 데이터베이스에서 해당 데이터 찾기
for (int i = 0; i < peoples.length(); i++) {
//JSON 객체 찾기
JSONObject c = peoples.getJSONObject(i);
// 아이디 불러오기
String id = c.getString(TAG_ID);
// 이름 불러오기
- 281 -