0
                Intent intent = getPackageManager().getLaunchIntentForPackage(
                    "com.*****.g3android");
             intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
                    | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
            startActivity(intent);

My problem is that when i click home button, application restart but only after 3-4 seconds.. but click launcher icon to start myapp is very fast. How can i fix? Thanks! b

1 Answers1

0

There is a android issue 4536.Your issue looks similar to that.
look at the solutions given to this question

Community
  • 1
  • 1
Meher
  • 2,585
  • 2
  • 23
  • 51