AND-401 무료 덤프문제 온라인 액세스
| 시험코드: | AND-401 |
| 시험이름: | Android Application Development |
| 인증사: | Android |
| 무료 덤프 문항수: | 130 |
| 업로드 날짜: | 2026-06-05 |
Consider the following code :
@ Override public void onCreateContextMenu(ContextMenu menu, View v,
ContextMenuInfo menuInfo) { super.onCreateContextMenu(menu, v, menuInfo); menu.setHeaderTitle("Menu");
AdapterContextMenuInfo cmi = (AdapterContextMenuInfo) menuInfo; menu.add(1, cmi.position, 0, "Open file"); menu.add(2, cmi.position, 0, "Save file");}
Which of the following best explains the code above?
Which Consider the following code:
Intent i = new Intent(this, MainActivity.class); i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(i);
What best explains the code above?
Which of these is NOT recommended in the Android Developer's Guide as a method of creating an individual View?