Page 242 - 3-3
P. 242
" 무인 체력장", "50m, 팔굽혀펴기 유연성, ") ;
// 리스트뷰를 누르는 이벤트 발생 메서드
listview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView parent, View v, int position, long id) {
// 첫 번째 아이템 스마트 클래스 이 선택되고( )
if(position == 0) {
// 포트 번호가 8001 이면
if(PORT == 8001){
//Class_Loginsee.java 로 가는 인텐트 생성
Intent intent = new Intent(getApplicationContext(),
Class_Loginsee.class);
//"IP" 라는 이름으로 IP 값을 넘기기
intent.putExtra("IP",IP);
//"WebIP" 라는 이름으로 WebIP 값을 넘기기
intent.putExtra("WebIP", WebIP);
//"PORT" 라는 이름으로 PORT 값을 넘기기
intent.putExtra("PORT",PORT);
// 화면 전환 인텐트 시작
startActivity(intent);
}
// 포트 번호가 8001 이 아니면
else
// 토스트 출력
Toast.makeText(getBaseContext(), " 포트값이 맞지 않습니다",
Toast.LENGTH_SHORT).show();
}
// 두 번째 아이템 스마트 오피스 이 선택되고( )
if(position == 1) {
// 포트 번호가 8000 이면
if(PORT == 8000){
//Office_Login.java( 스마트 오피스 로 가는 인텐트 생성)
Intent intent = new Intent(getApplicationContext(),
Office_Login.class);
//"IP" 라는 이름으로 IP 값을 넘기기
intent.putExtra("IP",IP);
//"WebIP" 라는 이름으로 WebIP 값을 넘기기
intent.putExtra("WebIP", WebIP);
//"PORT" 라는 이름으로 PORT 값을 넘기기
intent.putExtra("PORT",PORT);
// 화면 전환 인텐트 시작
startActivity(intent);
}
- 242 -