I have 5 activities. What I want to happen is to open random activities when the Start button is clicked on the MainMenu.
For Example: Activity 1 -> Activity 4 -&g
@Farbod Salamat-Zadeh your solution is great, except that part
Bundle extras = getBaseContext().getIntent().getExtras();
would result in mistake in Android Studio 2.1. This should instead be
Bundle extras = getIntent().getExtras();