package com.fastaccess.ui.widgets.recyclerview.layout_manager; import android.content.Context; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.util.AttributeSet; /** * Created by Kosh on 17 May 2016, 10:02 PM */ public class LinearManager extends LinearLayoutManager { public LinearManager(Context context) { super(context); } public LinearManager(Context context, int orientation, boolean reverseLayout) { super(context, orientation, reverseLayout); } public LinearManager(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 ignored) {} } }