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