I want to go on home screen when I press device\'s back button.I am using this code..
public void onBackPressed() { this.finish(); return; }
You can try this:
public boolean onKeyDown(int keyCode, KeyEvent event) { if(keyCode==KeyEvent.KEYCODE_BACK){ this.finish (); } return true; }