Page 600 - 3-3
P. 600
}
else // PORT 값이 다를경우
Toast.makeText(getBaseContext(), " 포트값이 맞지 않습니다",
Toast.LENGTH_SHORT).show();
}
if(position == 1) { // Item1 을 클릭할 경우
if(PORT == 8000){ // PORT 가 8000 일 경우
Intent intent = new Intent(getApplicationContext(), Office_Login.class);
// Office_Login 으로 가는 인탠트 생성
intent.putExtra("IP",IP); // IP 값을 인탠트로 넘김
intent.putExtra("WebIP", WebIP);// WebIP 값을 인탠트로 넘김
intent.putExtra("PORT",PORT);// PORT 값을 인탠트로 넘김
startActivity(intent);// 화면전환
}
else // PORT 값이 다를경우
Toast.makeText(getBaseContext(), " 포트값이 맞지 않습니다",
Toast.LENGTH_SHORT).show();
}
if(position == 2) { // Item2 를 클릭할 경우
if(PORT == 8002){ // PORT 가 8002 일 경우
Intent intent = new Intent(getApplicationContext(), MooIn_Login.class);
// MooIn_Login 으로 가는 인탠트 생성
intent.putExtra("IP",IP); // IP 값을 인탠트로 넘김
intent.putExtra("WebIP", WebIP);// WebIP 값을 인탠트로 넘김
intent.putExtra("PORT",PORT);// PORT 값을 인탠트로 넘김
startActivity(intent);// 화면전환
}
else // PORT 값이 다를경우
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() ;
}
}) ;
}
}
package com.helloworld.smartschool;
- 600 -