ViewPagernull 指標錯誤,android.support.v4.view.ViewPager.onSaveInsta

來源:互聯網
上載者:User

support.v4 包為我們提供了一個非常實用的滑動控制項ViewPager,在使用ViewPager時有一個需要注意的地方:

即:

android.support.v4.view.ViewPager.onSaveInstanceState null 指標等等...

 

錯誤如下:

...

Caused by: java.lang.NullPointerException
at android.support.v4.view.ViewPager.onSaveInstanceState(ViewPager.java:507)
at android.view.View.dispatchSaveInstanceState(View.java:6068)
at android.view.ViewGroup.dispatchSaveInstanceState(ViewGroup.java:1180)


...

...

問題分析:

在跳轉其他activity 或者在關閉當前activity 的時候;如果你的當前activity有用到ViewPager,但是還沒有給ViewPager setAdapter ,就會有以上異常;


--

解決方案:

只要有ViewPager 在介面初始化的時候就必須給ViewPager 設定adapter,不論你當前是否用到。並且一個ViewPager 最好只聲明一次,設定一次adapter,不然可能會有的時候介面顯示不出來;

 

 

如果布局代碼中出現了ViewPager控制項,無論使用與否,在onCreate時必須獲得它的對象,並setAdapter(),否則在Activity切換時會報onSavedInstanceStatenull 指標錯誤。

 


還有一些當前Activity無法正常停止之類的錯誤資訊。

這實際上也是這個包的一個小小的bug,網上很多開源的項目已經對這個bug進行了修正,涉及的ViewPager核心代碼修改如下,修改前:

 if (f.mSavedViewState != null) {     if (result == null) {         result = new Bundle();     }     result.putSparseParcelableArray(             FragmentManagerImpl.VIEW_STATE_TAG, f.mSavedViewState); } if (!f.mUserVisibleHint) {     // Only add this if it's not the default value     result.putBoolean(FragmentManagerImpl.USER_VISIBLE_HINT_TAG, f.mUserVisibleHint); } 


 

修改之後:

  if (f.mSavedViewState != null) {     if (result == null) {         result = new Bundle();     }     result.putSparseParcelableArray(             FragmentManagerImpl.VIEW_STATE_TAG, f.mSavedViewState); } if (!f.mUserVisibleHint) {     if (result == null) {         result = new Bundle();     }     // Only add this if it's not the default value     result.putBoolean(FragmentManagerImpl.USER_VISIBLE_HINT_TAG, f.mUserVisibleHint); 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.