I want to detect when my app minimizes by the hardware minimize button or code and launch itself again when minimized, i'm using the following code but it does nothing. I think it launches itself but in background.
@Override
protected void onUserLeaveHint()
{
launchApp();
System.out.println("Home Button Pressed");
super.onUserLeaveHint();
}
i am calling my intent from the launchApp() method