当我写android:excludeFromRecents="true"
或android:noHistory="true"
时,它不会禁用Android 4.0及平板电脑上的最新应用。是否需要任何权限或minSdkVersion或其他内容?
答案 0 :(得分:1)
当我写android:excludeFromRecents =“true”或android:noHistory =“true”时,它不会禁用Android 4.0+平板电脑上的最新应用。
两者都不应该“禁用最近的应用”。
android:excludeFromRecents="true"
,在<activity>
上定义,它将构成任务的根,will prevent that activity's task from appearing in the recent-tasks list。
android:noHistory="true"
表示the activity is finish()
-ed whenever the user leaves it,通过任何机制。