Page 121 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 121
}
JodaTimeAndroid.init(this);
//└시간을 불러오기 위해 JodaTimeAndroid에 초기화를 해준다.
DateTime dateTime = new DateTime(array.get(i).getTimestamp(),
DateTimeZone.forOffsetHours(9));
//└DateTime형으로 log 테이블의 time값을 받아온다.
time.setText(dateTime.toString("M월 d일 h시 m분 s초"));
//└time에는 M월 d일 h시 m분 s초라는 값을 보여준다.
row.addView(no);
//└TableRow형 row에 no을 추가시킴.
row.addView(name);
//└TableRow형 row에 name을 추가시킴.
row.addView(status);
//└TableRow형 row에 status를 추가시킴.
row.addView(time);
//└TableRow형 row에 time을 추가시킴.
tb.addView(row);
//└TableLayout형 tb에 row를 추가시킴
}
}
public boolean onCreateOptionsMenu(Menu menu) {
//└Action Bar를 생성해주는 메소드.
getMenuInflater().inflate(R.menu.log_menu, menu);
//└menu를 추가시킴
return true;
//└true를 반환함
}
public boolean onOptionsItemSelected(MenuItem item) {
//└Action Bar의 내용이 선택되었을 때 할 동작
int id = item.getItemId();
//└클릭된 버튼의 ID를 id가 저장함
if (id == android.R.id.home)
//└만약 눌린 버튼이 android.R.id.home이라면
onBackPressed();
//└뒤로가기 동작을 함(이전 intent로 돌아감)
else if (id == R.id.delete_log) {
//└만약 눌린 버튼이 R.id.delete_log라면
- 114 -