Skip to content

Instantly share code, notes, and snippets.

@goliver79
Created February 8, 2014 08:24
Show Gist options
  • Select an option

  • Save goliver79/8878498 to your computer and use it in GitHub Desktop.

Select an option

Save goliver79/8878498 to your computer and use it in GitHub Desktop.
[ANDROID] Close Activity on click button
// using finsih()
Button closeButton = (Button) findViewById(R.id.bClose);
closeButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
ActivityTwo.this.finish();
}
});
@chukkamahesh8
Copy link

chukkamahesh8 commented Nov 11, 2017

thank you for ur help...it helped me to complete my task...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment