This Android tutorial demonstrates how to start another activity from the application. In this example when user clicks the button in one activity, it launches another activity.
Create the Android Project. Select File>New>Android Project in the Eclipse menu.
Next create a class for first activity that extends the Activity class.
public class FirstActivity extends Activity
Create another class for second activity. This must also extend the Activity class.