InterviewSolution
Saved Bookmarks
| 1. |
How to write a quick script for launching a new activity within your application? |
| Answer» TION: 12Q:Write a quick script for launching a new activity within your APPLICATION. Answer:An EXPLICIT intent EXPLICITLY defines the activity the DEVELOPER wishes to start. Script code :Intent myIntent = new Intent(this, MyNewActivity.class);startActivity(myIntent);Filed Under: Programming | |