Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- i18n
- 지뢰찾기
- jsr303
- LastModified
- 알게뭐냐
- 랜선아미안해
- kotliln
- 알고리즘
- HTTP
- 클래스레벨밸리데이션
- 리얼월드HTTP
- cache-control
- brotli
- cross parameter
- jsr380
- 브로틀리
- Spring
- Kotlin
- 코드스피츠
- 개미수열
- 지수반등
- 워드프레스
- etag
- 이렇게살아야되나자괴감이
- 스프링
Archives
- Today
- Total
취미개발 블로그와 마음수양
안드로이드 메뉴바 본문
@Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. super.onCreateOptionsMenu(menu); MenuItem item1 = menu.add(0, 1, 0, "사과"); item1.setIcon(R.drawable.ic_launcher); item1.setAlphabeticShortcut('a'); menu.add(0,2,0, "포도").setIcon(R.drawable.ic_launcher); menu.add(0,3,0,"바나나").setIcon(R.drawable.ic_launcher); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case 1: Toast.makeText(this, "사과", Toast.LENGTH_SHORT).show(); return true; case 2: Toast.makeText(this, "포도", Toast.LENGTH_SHORT).show(); return true; case 3: Toast.makeText(this, "바나나", Toast.LENGTH_SHORT).show(); return true; default: return super.onOptionsItemSelected(item); } }
'잡다한노트 > 안드로이드' 카테고리의 다른 글
구글 개인정보 처리 방침 정책 관련 (0) | 2022.08.09 |
---|---|
안드로이드 기본 이벤트 처리 (0) | 2014.07.08 |
안드로이드 헬로월드 (0) | 2014.07.08 |