Pages

Monday, March 31, 2014

Back to Home Screen directly using ACTION MAIN with category CATEGORY HOME

If you want to go to Home Screen directly, using the code:


Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
startActivity(intent);



Related Posts by Categories

0 comments:

Post a Comment