gpt4 book ai didi

android - 在 RecyclerView 上设置最大高度

转载 作者:太空宇宙 更新时间:2023-11-03 13:13:53 26 4
gpt4 key购买 nike

我有一个包含线性布局的对话框 fragment ,该布局涉及 RecyclerView 上方的 titleText,并且在最底部,recyclerView 下方有一个按钮。

由于 recyclerView 根据适配器设置的项目数量展开或折叠,按钮有时会被截断并且不再显示在屏幕上,因为 recyclerView 只是覆盖了整个屏幕。

我的问题是,有没有一种方法可以设置 recyclerView 的最大高度,而无需将按钮隐藏在下方。我也不想只给 View 一个随机高度,以防万一 recyclerView 不包含任何项目,它只是一个空白部分。

如果您遇到过这个问题,请告诉我您是如何解决的。谢谢!

最佳答案

已更新您可以使用布局权重轻松实现这一点。这是一个例子:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Title"
android:textSize="21sp"/>

<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="30dp">
</android.support.v7.widget.RecyclerView>

</LinearLayout>

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:text="Submit"/>
</FrameLayout>

Title 和 RecyclerView 会根据内容包裹内容,button 会一直放在底部。

关于android - 在 RecyclerView 上设置最大高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39780639/

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