我正在使用RecyclerView
和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>
答案 0 :(得分:-1)
我厌倦了找到具有回收者视图的解决方案,所以最后我使用了GridView
<GridView
android:id="@+id/lv_explore"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:dividerHeight="0dip"
android:horizontalSpacing="5dp"
android:numColumns="3"
android:scrollbars="none"
android:verticalSpacing="5dp"
android:stackFromBottom="true" />
并使用此属性android:stackFromBottom="true"