Created
June 27, 2017 19:46
-
-
Save anonymous/87ac8e976afcbc37d45022ede2bd9a92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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