2013-03-21 103 views

回答

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,通過任何機制。

相關問題