Skip to content

Instantly share code, notes, and snippets.

Created June 27, 2017 19:46
Show Gist options
  • Save anonymous/87ac8e976afcbc37d45022ede2bd9a92 to your computer and use it in GitHub Desktop.
Save anonymous/87ac8e976afcbc37d45022ede2bd9a92 to your computer and use it in GitHub Desktop.
public void OnButtonClick(View v)
{
if(v.getId() == R.id.Activity)
{
//To Start an new activity create an "Intent" object
//Intent takes two parameters one is the mainactivity and other will be your new activity name
Intent abc = new Intent(MainActivity.this,newactivity.class);
startActivity(abc);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment