java.lang.IllegalArgumentException: Wrong state classs

來源:互聯網
上載者:User

標籤:

      java.lang.IllegalArgumentException: Wrong state class, expecting View State but received class cn.etouch.ecalendar.waterfallview.StaggeredGridView$GridListSavedState instead. This usually happens when two views of different type have the same id in the same hierarchy. This view‘s id is id/refresh_gridView. Make sure other views do not use the same id.

   按照Log的提示,是id起了衝突。但是我經過仔細查看XML布局檔案,並沒有起衝突的ID,事實上,在xml布局檔案中經常有重名的id。網上還有一些說通過clean項目,這個也解決不了問題。

   我遇到的情形是:FragmentA 中包括FragmentA1,FragmentA2,FragmentA3,FragementA3中有一個自訂的GridView,當A1,A2和A3之間切換時,程式就會崩潰,並報上述的錯誤。

   id相同?確實可能是ID相同。因為,當A1,A2和A3切換的時候,將A3的gridView狀態儲存了,當然id也儲存下來了。下次再切換到A3就可能出現id相同的情形。(不知道理解的對不對?)

   這時候需要重寫GridView中的onRestoreInstanceState函數:

     預設:

           @Override
    protected void onRestoreInstanceState(Parcelable state) {
            super.onRestoreInstanceState(state); }

      修改為:

        @Override
    protected void onRestoreInstanceState(Parcelable state) {
        try {
            super.onRestoreInstanceState(state);
        }catch (Exception e) {}
        state=null;
      }

     再次運行程式,問題得到解決

java.lang.IllegalArgumentException: Wrong state classs

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.