首先,要明確什麼叫「非中斷保存」。熟悉Fragment的開發人員都知道,Fragment是依附於Activity的。當Activity銷燬時,Fragment會隨之銷燬。而當Activity配置發生改變(如屏幕旋轉)時候,舊的Activity會被銷燬,而後從新生成一個新屏幕旋轉狀態下的Activity,天然而然的Fragment也會隨之銷燬後從新生成,而新生成的Fragment中的各個對象也與以前的那個Fragment不同,伴隨着他們的動做、事件也都不同。因此,這時候若是想保持原來的Fragment中的一些對象,或者想保持他們的動做不被中斷的話,就迫切的須要將原來的Fragment進行非中斷式的保存。 java
Activity的生命週期在配置發生改變時: android
- onPuase->onStop->onDestroy->onStart->onResume
好比在Activity中發生屏幕旋轉,其生命週期就是如此。而在onDestroy中,Activity會將其FragmentManager所包含的Fragment都銷燬掉(默認狀態),即Fragment的生命週期爲: git
- onDestroyView->onDestroy->onDetach
經過查看FragmentManager.java的代碼,能夠發如今Fragment生命週期執行到onDestroyView時候,狀態會由正常的ACTIVITY_CREATED變爲CREATED。而到了onDestroy生命週期時候,執行的代碼出現了有意思的事情: github
- if (!f.mRetaining) {
- f.performDestroy();
- }
- f.mCalled = false;
- f.onDetach();
- if (!f.mCalled) {
- throw new SuperNotCalledException("Fragment " + f
- + " did not call through to super.onDetach()");
- }
- if (!keepActive) {
- if (!f.mRetaining) {
- makeInactive(f);
- } else {
- f.mActivity = null;
- f.mParentFragment = null;
- f.mFragmentManager = null;
- }
- }
- 來源: <https://github.com/android/platform_frameworks_base/blob/master/core/java/android/app/FragmentManager.java>
當Fragment的mRetaining被置true的時候,Destroy生命週期並不會執行,而Fragment的mRetaining狀態是經過其retainNonConfig()來配置的,配置條件是Fragment不爲空且Framgnet的mRetainInstance爲true。到這裏就能看到,若是想要本身的Fragment不被銷燬掉,就要讓這個mRetainInstance爲true。 app
經過查閱Fragment.java源碼發現,經過API setRetainInstance和getRetainInstance能夠對其進行操做。一樣,Android文檔中對這兩個接口也有了必定的描述。 spa
這裏結合Fragment.java中setRetainInstance的註釋進行一下Fragment非中斷保存的總結。原註釋以下: code
- /**
- * Control whether a fragment instance is retained across Activity
- * re-creation (such as from a configuration change). This can only
- * be used with fragments not in the back stack. If set, the fragment
- * lifecycle will be slightly different when an activity is recreated:
- * <ul>
- * <li> {@link #onDestroy()} will not be called (but {@link #onDetach()} still
- * will be, because the fragment is being detached from its current activity).
- * <li> {@link #onCreate(Bundle)} will not be called since the fragment
- * is not being re-created.
- * <li> {@link #onAttach(Activity)} and {@link #onActivityCreated(Bundle)} <b>will</b>
- * still be called.
- * </ul>
- */
- public void setRetainInstance(boolean retain) {
- if (retain && mParentFragment != null) {
- throw new IllegalStateException(
- "Can't retain fragements that are nested in other fragments");
- }
- mRetainInstance = retain;
- }
若是想叫本身的Fragment即便在其Activity重作時也不進行銷燬那麼就要設置setRetainInstance(true)。進行了這樣的操做後,一旦發生Activity重組現象,Fragment會跳過onDestroy直接進行onDetach(界面消失、對象還在),而Framgnet重組時候也會跳過onCreate,而onAttach和onActivityCreated仍是會被調用。須要注意的是,要使用這種操做的Fragment不能加入backstack後退棧中。而且,被保存的Fragment實例不會保持過久,若長時間沒有容器承載它,也會被系統回收掉的。 orm
版權聲明:本文爲博主原創文章,未經博主容許不得轉載。 對象