I need to minimize the application when back button is pressed.
I use following code to catch hardware back button click event
help me with the code of min
I think that you need to treat back
event as home
event. The code below is how I emulate home
pressed when User press back
button:
public void minimizeApp() {
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
}