gpt4 book ai didi

android - 我怎样才能让 recyclerView 在 android 约束布局中占据一半的屏幕(最大)?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:18:55 26 4
gpt4 key购买 nike

我有一个包含 2 个 View 的屏幕,一个 map (顶部)和一个回收站(底部)规则很简单。

recycler View 可以延伸到屏幕中间,如果需要更多空间则应该滚动, map 将占据剩余空间,当然如果 recycler 元素较少则应该收缩为 map 留出更多空间..

我正在尝试使用约束布局来实现这一点,同时我也在尝试避免涉及计算的解决方案。

查看下图以获取有关我正在努力实现的目标的更多信息: enter image description here

这是我的代码

<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
tools:context="com.qmic.itraffic.ui.activities.crowdsourcing.CrowdSourceReportingDetailsActivity">

<androidx.constraintlayout.widget.Guideline
android:id="@+id/halfScreenGuideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.5" />

<FrameLayout
android:id="@+id/content_frame"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/categories"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:background="@color/manatee"
/>

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/categories"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:clipToPadding="false"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/halfScreenGuideline" />



</androidx.constraintlayout.widget.ConstraintLayout>

我的问题是我能否仅使用 xml(约束布局)实现此行为?或者我需要进行计算吗?

最佳答案

能否请您在 recyclerview xml 中尝试以下代码

android:layout_height="wrap_content"
app:layout_constrainedHeight="true"

更改高度以包裹内容并添加第二行。这样,recyclerview 的高度应该与其内容相同,但绝不会超过指南/约束。

关于android - 我怎样才能让 recyclerView 在 android 约束布局中占据一半的屏幕(最大)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57671615/

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