Results 3 comments of SYLin

自己trace一下,發現這個問題是在初始化不同步造成的。在第一次tableView的initialize()還沒執行完畢,就有class 立刻call Table view 中的getCellLayoutManager()。在這個時間點拿到的mCellLayoutManager是錯誤的object,因為裡面的mCellRecyclerView是null。 所以我加了一行程式碼去避開這個錯誤在Tableview。 ``` public CellLayoutManager getCellLayoutManager() { if (mCellLayoutManager == null) { mCellLayoutManager = new CellLayoutManager(getContext(), this); if (getCellRecyclerView() == null) mCellLayoutManager = null; //add this...

i have same problem, but i solve it, u can try my solution may be u need check disk cache has been cleared when device reboot. because disk cache not...

> > i have same problem, but i solve it, u can try my solution > > may be u need check disk cache has been cleared when device reboot....