Exact The same question that is mentioned in this Question.
Considered it the following code fragment. i.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT) ; actauul, which brings activity back to the fore.
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);
source share