Friday, 11 May 2012

Start an Activity in android

You can start another activity by calling startActivity(), passing it an Intent that describes the activity you want to start.


Intent intent = new Intent(this, SignInActivity.class);
startActivity(intent);

No comments:

Post a Comment