gpt4 book ai didi

android - 约束布局 : Create a button that fills space after a RecyclerView

转载 作者:搜寻专家 更新时间:2023-11-01 09:31:03 24 4
gpt4 key购买 nike

我在 ConstraintLayout 中有一个水平的 RecyclerView。我想在 RecyclerView 的末尾放置一个按钮。当回收器为空时,按钮应扩展到所有可用空间。当元素被添加到回收站时,按钮应该被压到最低限度。

ConstraintLayout 1.1.0 有一些新增功能,例如 layout_constraintWidth_min,但我无法使用它。它应该按照我的预期工作吗?

下面是相关属性,不包括高度:

<android.support.v7.widget.RecyclerView
android:id="@+id/horizontal_recycler"
android:layout_width="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@+id/add">
</android.support.v7.widget.RecyclerView>

<Button
android:id="@+id/add"
android:layout_width="0dp"
app:layout_constraintWidth_min="80dp"
app:layout_constraintStart_toEndOf="@+id/horizontal_recycler"
app:layout_constraintEnd_toEndOf="parent">
</Button>

最佳答案

这是我的解决方案。

<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="wrap_content"
android:layout_height="200dp"
android:layout_marginEnd="80dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="ADD"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/recyclerView"
app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

请注意,为了防止 recyclerView 挤压按钮,回收器上的边距应等于按钮加上您认为合适的任何填充和边距。

关于android - 约束布局 : Create a button that fills space after a RecyclerView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47332302/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com