Computer Science, asked by alikaka454545, 11 months ago

Write a quick script for launching a new activity within your application.

Answers

Answered by shawnsquires23
0

Answer:

Explanation:

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

Similar questions