• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Help with Exit button

bigmos

Lurker
Below is sample code
It force closes on exit any ideas?

:confused:
public void exitbuttion ( View view )
{
if (view.getId() !=R.id.button3)
return;
finish();

}
}
 
Back
Top Bottom