RecyclerView与GridLayoutManager和反向布局堆栈到底部

时间:2015-10-18 11:22:13

标签: android android-recyclerview gridlayoutmanager

我正在使用RecyclerViewGridLayoutManager。在该布局管理器上,我调用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>

1 个答案:

答案 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"