Activity & Intent
Create an new Activity Create a class extends from Activity Create a layout for the activity setContentView for the activity Configure the activity in the AndroidManifest.xml file
startActivity(intent) Multiple Activities Activity01 Activity02 startActivity(intent)
Intent …… Intent intent = new Intent(); intent.setClass(Activity01.this, Activity02.class); startActivity(intent);
Get information from Intent In the Activity01.class intent.putExtra(“one”,firstValue); In the Activity02.class intent.getStringExtra(“one”);