- Home
- Android Certification
- AND-401 Exam
- Android.AND-401.dumpsfiles Dumps
Free Android AND-401 Exam Dumps Questions & Answers
| Exam Code/Number: | AND-401Join the discussion |
| Exam Name: | Android Application Development |
| Certification: | Android |
| Question Number: | 130 |
| Publish Date: | Aug 27, 2026 |
|
Rating
100%
|
|
Page: 1 / 26
Total 130 questions
Total 130 questions
What two methods you have to override when implementing Android option menus?
Correct Answer: B
Which of the following Activity life-cycle methods is called once the activity is no longer visible?
Correct Answer: A
Which of the following a Notification object must contain? (Choose three)
Correct Answer: A,B,D
Which of the following is true about object arrayAdapter declared in the code below?
String[] items = {"Item 1","Item 2","Item 3"};
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, items); listView.setAdapter(arrayAdapter);
Correct Answer: B