I'm a beginner with Android development and want to create a simple onClick event to bring me to a blank activity page. I have named my new activity page InsurancePage and added a button called insurance to my xml file. When I click on this button I want to to bring me to the InsurancePage.
<Button
            android:id="@+id/insurance"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="46.24"
            android:background="@drawable/curvebutton"
            android:lines="1"
            android:text="@string/insurance"
            android:textColor="#ffffff"
            android:onClick="onClickbtnInsurance" />
 
     
     
    