gpt4 book ai didi

android - 如何在 XML 或 Kotlin 代码中修复 RecyclerView 的高度

转载 作者:行者123 更新时间:2023-11-29 18:25:13 24 4
gpt4 key购买 nike

我已经尝试了下面的代码,但它总是给我全屏的 recyclerview,我不知道如何解决这个问题。

请注意,我的 recyclerview 中只有两行/项目

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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"
xmlns:tools="http://schemas.android.com/tools">



<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview1"
android:layout_width="match_parent"
android:layout_height="wrap_content"

tools:listitem="@layout/recyclerview_item" />

</RelativeLayout>

<EditText
android:id="@+id/textfield"
android:layout_width="294dp"
android:layout_height="53dp"
android:layout_marginEnd="80dp"
android:layout_marginRight="80dp"
android:layout_marginBottom="164dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toStartOf="parent">

</EditText>

</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

Yes you can do it with constraint layout here is the code you can follow 

注意:请执行 cleanRebuild Project 以反射(reflect)我在 Android Studio 3.5+ 中注意到的正确 UI 更改,有时 UI 不会反射(reflect)。

    <androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview1"
android:layout_width="match_parent"
android:layout_height="0dp"
tools:listitem="@layout/recyclerview_item"
app:layout_constraintBottom_toTopOf="@id/textfield"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />


<EditText
android:id="@+id/textfield"
android:layout_width="196dp"
android:layout_height="56dp"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginBottom="164dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/button"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/recyclerview1" />


</androidx.constraintlayout.widget.ConstraintLayout>

关于android - 如何在 XML 或 Kotlin 代码中修复 RecyclerView 的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59454817/

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