36 lines
1.2 KiB
Java
36 lines
1.2 KiB
Java
package android.bug;
|
|
|
|
import android.content.Context;
|
|
import android.support.v7.widget.LinearLayoutManager;
|
|
import android.support.v7.widget.RecyclerView;
|
|
import android.util.AttributeSet;
|
|
import android.util.Log;
|
|
|
|
/**
|
|
* Created by Stardust on 2017/2/13.
|
|
* http://stackoverflow.com/questions/31759171/recyclerview-and-java-lang-indexoutofboundsexception-inconsistency-detected-in
|
|
*/
|
|
|
|
public class WrapContentLinearLayoutManager extends LinearLayoutManager {
|
|
public WrapContentLinearLayoutManager(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
public WrapContentLinearLayoutManager(Context context, int orientation, boolean reverseLayout) {
|
|
super(context, orientation, reverseLayout);
|
|
}
|
|
|
|
public WrapContentLinearLayoutManager(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
|
|
super(context, attrs, defStyleAttr, defStyleRes);
|
|
}
|
|
|
|
@Override
|
|
public void onLayoutChildren(RecyclerView.Recycler recycler, RecyclerView.State state) {
|
|
try {
|
|
super.onLayoutChildren(recycler, state);
|
|
} catch (IndexOutOfBoundsException e) {
|
|
Log.e("LinearLayoutManager", "Android bug ", e);
|
|
}
|
|
}
|
|
}
|