问题
In Android, if you want to clear your current Activity
stack and launch a new Activity
(for example, logging out of the app and launching a log in Activity
), there appears to be two approaches.
Are there any advantages to one over the other if your target API level is above 16?
1) Finish Affinity
Calling finishAffinity()
from an Activity.
Activity.finishAffinity
2) Intent Flags
Intent intent = new Intent(this, LoginActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
finish();
The finishAffinity()
approach is suitable for >= API 16.
The Intent
flags approach is suitable for >= API 11.
To be clear, for the purpose of clearing the current Activity
stack, both approaches appear to work equally as well. My question is are there are problems with either that people have experienced and, therefore, is there any reason to choose one over the other?
回答1:
Functionally, there's no difference, but testing this out on GenyMotion there appears to be a slight visual difference. See web cast: https://drive.google.com/file/d/0B8Y77sY7Y2CGRS02c3UyNjd2MGs/view?usp=sharing
You would need to try that on a range of devices to see how consistent it is.
Subjectively, I would say go with the finishAffinity()
because it's more explicit. However, if you have to support < SDK 16 you don't really have a choice.
回答2:
If API >= 21, you can use the command of:
finishAndRemoveTask ();
Finishes all activities in this task and removes it from the recent tasks list.
https://developer.android.com/reference/android/app/ActivityManager.AppTask.html
回答3:
Try this
Intent.FLAG_ACTIVITY_CLEAR_TOP
it clears the stack of previous activities
回答4:
You should use intent flags for that.
What if you have a large stack of activities, will you call from each one to finish them all?
Its much better and easier to just call a Intent.
Hope this helps.
来源:https://stackoverflow.com/questions/33497151/activity-finishaffinity-vs-intent-flag-activity-new-task-intent-flag-activit