https://developer.android.com/guide/components/intents-common.html code example
Example 1: android studio intent usage
Intent i = new Intent(MainActivity.this, ActivityTwo.class);
startActivity(i);
Example 2: intent class for url and phone and others
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.vogella.com/"));
startActivity(i);