How to bring an activity to front in android? -



How to bring an activity to front in android? -

i using movetasktoback() function send activity background. want bring activity front end when timer in activity finishes. using phone key send activity back. how do that? help please.

exact same issue mentioned on question.

sloved next code snippet. i.addflags(intent.flag_activity_reorder_to_front); actauul brings activity front.

intent i=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);

android

Comments

Popular posts from this blog

Using Android Volley to post an array to PHP -

python - How to add an model instance to a django queryset? -

angularjs - No 'Access-Control-Allow-Origin' error from local domain to public API -