Android excludeFromRecents是否需要任何权限?

时间:2013-03-21 14:30:24

标签: android

当我写android:excludeFromRecents="true"android:noHistory="true"时,它不会禁用Android 4.0及平板电脑上的最新应用。是否需要任何权限或minSdkVersion或其他内容?

1 个答案:

答案 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,通过任何机制。