Searched refs:reverseLayout (Results 1 – 5 of 5) sorted by relevance
62 boolean reverseLayout) { in ChooserGridLayoutManager() argument63 super(context, spanCount, orientation, reverseLayout); in ChooserGridLayoutManager()
32 boolean smoothScrollbarEnabled, boolean reverseLayout) { in computeScrollOffset() argument41 final int itemsBefore = reverseLayout in computeScrollOffset()
162 public LinearLayoutManager(Context context, int orientation, boolean reverseLayout) { in LinearLayoutManager() argument164 setReverseLayout(reverseLayout); in LinearLayoutManager()176 setReverseLayout(properties.reverseLayout); in LinearLayoutManager()375 public void setReverseLayout(boolean reverseLayout) { in setReverseLayout() argument377 if (reverseLayout == mReverseLayout) { in setReverseLayout()380 mReverseLayout = reverseLayout; in setReverseLayout()
98 boolean reverseLayout) { in GridLayoutManager() argument99 super(context, orientation, reverseLayout); in GridLayoutManager()
9724 properties.reverseLayout = a.getBoolean(R.styleable.RecyclerView_reverseLayout, false); in getProperties()9772 public boolean reverseLayout; field in RecyclerView.LayoutManager.Properties