我正在使用 aRecyclerView
和 a GridLayoutManager
。在那个布局管理器上,我调用setReverseLayout(true)
了元素以相反的顺序显示。
但是现在,RecyclerView
最初是从列表末尾显示的。我知道有一种setStackFromEnd(boolean)
方法,但它与GridLayoutManager
.
以相反的顺序显示元素并仍然RecyclerView
从顶部显示的最佳方法是什么?
这是我使用的布局文件RecyclerView
:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.mgaetan89.showsrage.fragment.ShowsSectionFragment">
<android.support.v7.widget.RecyclerView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/grid_margin"
android:clipToPadding="false"
android:paddingBottom="@dimen/fab_spacing"/>
<TextView
android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/no_shows"
android:visibility="gone"/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/add_show"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end|right"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_add_black_24dp"/>
</FrameLayout>