閱讀542 返回首頁    go iPhone_iPad_Mac_apple


解決Android程序退出後不顯示在近期任務裏

solution:

在AndroidManifest.xml中對應的Activity中找到“android:excludeFromRecents”,把值改為false,或直接去掉該項。

Develop Reference

android:excludeFromRecents Whether or not the task initiated by this activity should be excluded from the list of recently used applications ("recent apps"). That is, when this activity is the root activity of a new task, this attribute determines whether the task should not appear in the list of recent apps. "true" if the task should beexcluded from the list; "false" if it should be included. The default value is "false".  

============================

相反,如果要不出現在近期任務裏麵,可以增加android:excludeFromRecents="true",但貌似要apk中所有activity都加上才有用。


最後更新:2017-04-03 12:54:02

  上一篇:go Oracle報錯:ORA-01033:ORACLE initialization or shutdown in process
  下一篇:go android的listview item點擊詳解