InterviewSolution
Saved Bookmarks
| 1. |
What is used to navigate between activities in android programming?(a) intents (b) fragments(c) class (d) all the above |
|
Answer» intent Explanation: CREATE an Intent referencing the Activity class you want to switch to. Call the startActivity(Intent) METHOD to switch to the Activity. Create a back button on the new Activity and call the finish() method on an Activity when the back button is PRESSED. |
|