Page 619 - 3-3
P. 619
hashMap.put(TAG_Sev, Sev);
//7 교시 출석정보 입력
mArrayList.add(hashMap);
// 배열에 추가
}
ListAdapter adapter = new SimpleAdapter( // 객체생성
WDataActivity.this, mArrayList, R.layout.item_list_class, // item_list 를
layout 으로 불러옴
new String[]{TAG_Num, TAG_Name, TAG_Fir, TAG_Sec, TAG_Thi,
TAG_Fou, TAG_Fif, TAG_Six, TAG_Sev}, // String 값 배열
new int[]{R.id.num, R.id.name, R.id.fir, R.id.sec, R.id.thi, R.id.fou,
R.id.fif, R.id.six, R.id.sev} // int 값 배열
);
mlistView.setAdapter(adapter); // listview 에 연결
} catch (JSONException e) {
}
}
}
}
package com.helloworld.smartschool;
import android.content.Intent; // 액티비티 호출 클래스
import android.os.Bundle; // 문자열로 된 키와 여러 가지의 타입의 값을 저장하는 Map 클래스
import android.os.StrictMode; // 응답속도 향상 클래스
import android.support.v7.app.AppCompatActivity; // 안드로이드 하위 버전 지원 액티비티 클래스
import android.view.View; // 모든 가시적 객체의 부모 클래스
import android.widget.Button; // 버튼 사용 클래스
import android.widget.ImageButton; // 이미지버튼 사용 클래스
/**
* Created by JBTS-02-14 on 2017-11-14.
*/
public class IDActivity extends AppCompatActivity {
String dates; // 날짜
String id; // 학생정보
String IP; // IP 주소
int PORT; // 포트
@Override
protected void onCreate(Bundle savedInstanceState) {
- 619 -