3
我已經爲清單上的Activity
設置了noHistory="true"
。預期的結果是當用戶離開Activity
並且它不再在屏幕上可見時,活動將完成。當屏幕鎖定時,活動noHistory =「true」不起作用
這個工作正常,當我導航到不同的應用程序,按Home按鈕並返回到活動按預期重新創建。但是,當Activity
是可見的,如果屏幕鎖定,並解鎖回resumes the activity
。我想Activity
重新創建或只是不顯示,讓用戶再次啓動應用程序。
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity
android:name=".TestActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:noHistory="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>