Issue
I would like to simulate behavior of soft Home button. I'd like that when user tap back button in a specific Activity of my application, this go in background and show device homepage. How can i do (i know i should override onBackPressed() inside activity )
Solution
If you know how to override onBackPressed() then override this method and in this method do like:
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
Answered By - DroidDev
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.