public class MyActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_my); } }
Intent intent = new Intent(this, MyActivity.class); startActivity(intent);In this example, we have created an Intent object to navigate to the ‘MyActivity’ activity. We then call the startActivity() method to start the activity. Package Library: ‘android.app’ package is part of the Android SDK and is available in all Android development environments.