2

我正在使用 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>
4

1 回答 1

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

于 2016-10-28T11:42:13.560 回答