RecyclerView
内有一个ConstraintLayout
,其顶部位于textView
的底部,其底部延伸至父亲。我希望此RecyclerView
中的项目默认为RecyclerView
的底部。我尝试添加gravity="bottom"
,并尝试使用foregroundGravity
和layout_gravity
进行同样的操作。我还尝试将layout_gravity="bottom"
添加到我的recyclerView
项目的布局中。尽管如此,recyclerView
中的所有项目仍然默认为顶部。有什么我可以做的,以确保物品在底部?这是xml:
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/my_tv"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="needed to unlock next coupon"
android:textColor="@color/gray"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/irrelevant_tv"
android:layout_marginTop="@dimen/spacing_tiny"
android:gravity="center"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/rv"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="@dimen/spacing_xl"
android:paddingTop="@dimen/spacing_large"
android:overScrollMode="always"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
app:layout_constraintTop_toBottomOf="@id/my_tv"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</android.support.constraint.ConstraintLayout>
我也不想在wrap_content
上recyclerView
,因为否则它不是scrollable
(我recyclerView
总共有3个项目,并且根据用户的显示设置,recyclerView
可能会被推离屏幕,这需要我能够滚动)
答案 0 :(得分:1)
您可以使用方法LinearLayoutManager#setStackFromEnd(boolean)
。
然后,您的项目将从视图底部开始呈现。
请参阅docs。