When my application is idle, Android kills the process. If user reopens the application after some time, only the top Activity is created - this is a problem for me because the
I think this answer only for you.
After finish progress call this
finish(); Intent intent = new Intent(this, sameactivity.class); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent);