I'm having a weird issue; my app won't close when i press the back button, even if i override the onBackPressed with a finish() it won't work...
@Override
public void onBackPressed() {
finish();
}
What can cause this? maybe a handler not closed or something?
Thanks