How to bring an activity to front in android? -


I am using the moveTasktoBack () function to send my activity in the background when the timer in my activity is over So I bring my activity in front. I'm using the phone back key to send back the activity. How do I do that? help please.

The exact same problem has been mentioned on this question.

Shed it with the following code snippet: i.addFlags (Intent.FLAG_ACTIVITY_REORDER_TO_FRONT) ; Actauul brings out the activity.

  intent = new intent (ApplicationStatus.this, NotifyActivity.class); //i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); I.addFlags (Intent.FLAG_ACTIVITY_CLEAR_TOP); I.addFlags (Intent.FLAG_ACTIVITY_REORDER_TO_FRONT); I.putExtra ("ID_TimeLeft", String.valueOf (TimeLeft)); StartActivity (i);  

Comments