Page 243 - 3-3
P. 243
// 포트 번호가 8000 이 아니면
else
// 토스트 출력
Toast.makeText(getBaseContext(), " 포트값이 맞지 않습니다",
Toast.LENGTH_SHORT).show();
}
// 세 번째 아이템 무인체력장 이 선택되고( )
if(position == 2) {
// 포트 번호가 8002 이면
if(PORT == 8002){
//MooIn_Login.java 로 가는 인텐트 생성
Intent intent = new Intent(getApplicationContext(),
MooIn_Login.class);
//"IP" 라는 이름으로 IP 값을 넘기기
intent.putExtra("IP",IP);
//"WebIP" 라는 이름으로 WebIP 값을 넘기기
intent.putExtra("WebIP", WebIP);
//"PORT" 라는 이름으로 PORT 값을 넘기기
intent.putExtra("PORT",PORT);
// 화면 전환 인텐트 시작
startActivity(intent);
}
// 포트 번호가 8002 가 아니면
else
// 토스트 출력
Toast.makeText(getBaseContext(), " 포트값이 맞지 않습니다",
Toast.LENGTH_SHORT).show();
}
// 리스트뷰 아이템 생성
ListViewItem item = (ListViewItem) parent.getItemAtPosition(position) ;
// 아이템 제목을 가져오기
String titleStr = item.getTitle() ;
// 아이템 데이터를 가져오기
String descStr = item.getDesc() ;
// 아이템 아이콘을 가져오기
Drawable iconDrawable = item.getIcon() ;
}
}) ;
}
}
- 243 -