How To Minimize Whole Application In Android?
I was developed android application. More over i have completed, but i want to minimize option. I have used tab bar. In that i want to minimize tab. When user click minimize tab to
Solution 1:
I'm not sure what you mean by minimize. If you want to hide your app and present the user with the homescreen you can use the following intent.
IntentstartMain=newIntent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
Although the Home button is more than sufficient if a user wants to hide your app
Post a Comment for "How To Minimize Whole Application In Android?"