Page 494 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 494
정보통신기기 프로젝트
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// id 값을 받아옴
int id = item.getItemId();
//id값이 일치하지 않으면 실행이 안 됨
if (id == R.id.setting_button) {
//쓰레드 실행을 종료
running = false;
if (threadRun)
thread.interrupt();
startButton.setText("층확인 시작");
Intent intentSubActivity = new Intent(MainActivity.this, SettingActivity.class);
//세팅창을 뛰움
startActivity(intentSubActivity);
return true;
}
//database로 가는 버튼이라면
if (id == R.id.database_button) {
running = false;
if (threadRun)
thread.interrupt();
startButton.setText("층확인 시작");
Intent intentSubActivity = new Intent(MainActivity.this, DataPage.class);
startActivity(intentSubActivity);
return true;
정보통신기기과
- 487 -