Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Intent startMain = new Intent(Intent.ACTION_MAIN);
  2. startMain.addCategory(Intent.CATEGORY_HOME);
  3. startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  4. startActivity(startMain);
  5.  
  6. @Override
  7. public void onBackPressed()
  8. {
  9. // code here to show dialog
  10. super.onBackPressed(); // optional depending on your needs
  11.  
  12. finish();
  13. }
  14.  
  15. onBackPressed();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement