Hi I am developing one android application in which I am trying to check whether application is launch from recent task or not.Basically what I want to do, I want to show pin-code screen once user resume application from background. I tried with following things:
if ((getIntent().getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0)
{
Log.i("******** BaseActivity", "******** BaseActivity onStart if launch from history ... "+Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY);
}
else
{
Log.i("******** BaseActivity", "******** BaseActivity onStart if not launch from history");
}
Above thing always returns zero for FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY
. Need some help. Thank you.