Created
February 8, 2014 08:24
-
-
Save goliver79/8878498 to your computer and use it in GitHub Desktop.
[ANDROID] Close Activity on click button
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
| // using finsih() | |
| Button closeButton = (Button) findViewById(R.id.bClose); | |
| closeButton.setOnClickListener(new OnClickListener() { | |
| @Override | |
| public void onClick(View v) { | |
| ActivityTwo.this.finish(); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you for ur help...it helped me to complete my task...