應用待機時間過長導致記憶體被回收程式崩潰
阿新 • • 發佈:2019-01-22
android:alwaysRetainTaskState="true" 新增這句話就不蹦了
android:allowTaskReparenting=["true" | "false"] 是否允許activity更換從屬的任務,比如從簡訊息任務 切換到瀏覽器任務。 android:alwaysRetainTaskState=["true" | "false"] 是否保留狀態不變, 比如切換回home, 再從新開啟, activity處於最後的狀態 android:clearTaskOnLaunch=["true"" | "false"] 比如 P 是 activity, Q 是被P 觸發的 activity, 然後返回Home, 從新啟動 P, 是否顯示 Q android:configChanges=[one or more of: "mcc" "mnc" "locale" "touchscreen" "keyboard" "keyboardHidden" "navigation" "orientation" "fontScale"] 當配置list發生修改時, 是否呼叫 onConfigurationChanged() 方法 比如 "locale|navigation|orientation". android:enabled=["true" | "false"] activity 是否可以被例項化, android:excludeFromRecents=["true" | "false"] 是否可被顯示在最近開啟的activity列表裡 android:exported=["true" | "false"] 是否允許activity被其它程式呼叫 android:finishOnTaskLaunch=["true" | "false"] 是否關閉已開啟的activity當用戶重新啟動這個任務的時候 android:icon="drawable resource" 圖示 android:label="string resource" 標籤 android:name="string" 名稱 android:launchMode=["standard" | "singleTop" |"singleTask" | "singleInstance"] activity啟動方式, "standard" "singleTop" "singleTask" "singleInstance" 其中前兩個為一組, 後兩個為一組 android:multiprocess=["true" | "false"] android:noHistory=["true" | "false"] 是否需要移除這個activity當用戶切換到其他螢幕時。 這個屬性是 API level 3 中引入的 android:permission="string" android:process="string" 一個activity執行時所在的程序名,所有程式元件執行在應用程式預設的程序中,這個程序名跟應用程式的包名一致。<application>中的元素process屬效能夠為所有元件設定一個新的預設值。但是任何元件都可以覆蓋這個預設值,允許你將你的程式放在多程序中執行。 如果這個屬性被分配的名字以:開頭,當這個activity執行時, 一個新的專屬於這個程式的程序將會被建立。如果這個程序名以小寫字母開頭,這個activity將會執行在全域性的程序中,被它的許可所提供。 android:screenOrientation=["unspecified" | "user" | "behind" |"landscape" | "portrait" | "sensor" | "nonsensor"] activity顯示的模式, "unspecified" 預設值 "landscape" 風景畫模式,寬度比高度大一些 "portrait" 肖像模式, 高度比寬度大。 "user" 使用者的設定 "behind" "sensor" "nosensor" android:stateNotNeeded=["true" | "false"] 是否 activity被銷燬和成功重啟並不儲存狀態 android:taskAffinity="string" activity的親屬關係, 預設情況同一個應用程式下的activity有相同的關係 android:theme="resource or theme" activity的樣式主題, 如果沒有設定,則activity的主題樣式從屬於應用程式, 參見<application>元素的theme屬性 android:windowSoftInputMode=[one or more of: "stateUnspecified""stateUnchanged" "stateHidden" "stateAlwaysHidden" "stateVisible""stateAlwaysVisible""adjustUnspecified""adjustResize" "adjustPan"] > activity主視窗與軟鍵盤的互動模式, 自從API level 3 被引入