Join ExamsbookAnswer :
How will you launch an Activity within you application?5
Q: How will you launch an Activity within you application?
- Show AnswerHide Answer
- Workspace
Answer :
Explanation :
For launching an application, we will need to create an intent that explicitly defines the activity that we wish to start. For example: Code Intent intent = new Intent(this, MyTestActivity.class); startActivity(intent);