Wednesday, 12 March 2014

Link one Activity to other in android

By using below code:
put this code in onCreate method in activity.

Intent intent=new Intent(getApplicationContext,activityname.class);
startActivity(intent);

1 comment: