There are two types of Intent navigation between activities 1. Explicit Intent Navigation 2. Implicit Intent Navigation Following is an example of explicit Intent Navigation step1 : create new android application projects step2 : create new activity<SecondActivity.java> step3 : create new xml file<second_page.xml> under layout folder step4 : register the activity in manifest.xml file activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" ...