在使用RecyclerView時,有時候出現(xiàn)類似下方的這種錯誤:
java.lang.IndexOutOfBoundsException: Inconsistency detected. Invalid item position 0(offset:0).state:60 android.support.v7.widget.RecyclerView{1dee303 VFED..... .F......
0,0-1440,1952 #7f09025f app:id/rv_account_fund_details}, adapter:com.desjf.dsjr.adapter.bankAdapter.BankFundDetailsItemAdapter@c63c280, layout:com.desjf.dsjr.widget.RecyclerViewNoBugLinearLayoutManager@abd00b9,
context:com.desjf.dsjr.activity.bankActivity.BankAccountFundDetailsActivity@90eccbe
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.support.v7.widget.RecyclerView$Recycler.tryGetViewHolderForPositionByDeadline(RecyclerView.java:5628)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.support.v7.widget.GapWorker.prefetchPositionWithDeadline(GapWorker.java:285)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.support.v7.widget.GapWorker.flushTaskWithDeadline(GapWorker.java:342)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.support.v7.widget.GapWorker.flushTasksWithDeadline(GapWorker.java:358)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.support.v7.widget.GapWorker.prefetch(GapWorker.java:365)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.support.v7.widget.GapWorker.run(GapWorker.java:396)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.os.Handler.handleCallback(Handler.java:761)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.os.Handler.dispatchMessage(Handler.java:98)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.os.Looper.loop(Looper.java:156)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at android.app.ActivityThread.main(ActivityThread.java:6523)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at java.lang.reflect.Method.invoke(Native Method)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:942)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:832)
剛開始遇見你會很奇怪,這種錯誤不會提示你任何一行代碼有問題赚楚,但它就是會讓程序crash掉当纱,使用 RecyclerView 加SwipeRefreshLayout下拉刷新的時候阎抒,如果綁定的 List 對象在更新數(shù)據(jù)之前進行了 clear颂碘,而這時用戶緊接著迅速上滑 RecyclerView,就會造成崩潰微饥,而且異常不會報到我們的代碼上,屬于RecyclerView內(nèi)部錯誤古戴。這就是當 clear 了 list 之后欠橘,這時迅速上滑,此時新數(shù)據(jù)還沒到來现恼,就會導致 RecyclerView 要更新加載下面的 Item 時候肃续,找不到數(shù)據(jù)源了,造成 crash叉袍。這種方法該如何解決始锚,我們可以使用自定義的布局,然后將其加載到RecyclerView 中畦韭,手動去捕獲這個異常信息疼蛾,從而不讓程序crash,
public class RecyclerViewNoBugLinearLayoutManagerextends LinearLayoutManager {
public RecyclerViewNoBugLinearLayoutManager(Context context) {
super(context);
? ? }
public RecyclerViewNoBugLinearLayoutManager(Context context, int orientation, boolean reverseLayout) {
super( context, orientation, reverseLayout );
? ? }
public RecyclerViewNoBugLinearLayoutManager(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super( context, attrs, defStyleAttr, defStyleRes );
? ? }
@Override
? ? public void onLayoutChildren(RecyclerView.Recycler recycler, RecyclerView.State state) {
try {
//try catch一下
? ? ? ? ? ? super.onLayoutChildren( recycler, state );
? ? ? ? }catch (IndexOutOfBoundsException e) {
e.printStackTrace();
? ? ? ? }
}
@Override
? ? public boolean supportsPredictiveItemAnimations() {
return false;
? ? }
@Override
? ? public int scrollVerticallyBy(int dy, RecyclerView.Recycler recycler, RecyclerView.State state) {
try {
return super.scrollVerticallyBy(dy, recycler, state);
? ? ? ? }catch (Exception e) {
e.printStackTrace();
? ? ? ? }
return 0;
? ? }
}