gpt4 book ai didi

android - 如何将最大高度设置为scrollView?

转载 作者:行者123 更新时间:2023-12-04 14:32:55 34 4
gpt4 key购买 nike

如何为 scrollView 设置 maxHeight 属性?
我有一个 LinearLayout我以编程方式向这个布局添加了一些 View (行)。当行达到scrollView的maxHeight时如何显示滚动? ScrollView 位于 CardView 中

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:id="@+id/textViewTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<androidx.cardview.widget.CardView
android:id="@+id/cardView"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constrainedHeight="true"
app:layout_constraintBottom_toTopOf="@+id/cardView2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHeight_max="100dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textViewTitle">

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:id="@+id/linear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</ScrollView>


</androidx.cardview.widget.CardView>
</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

因为您使用的是 ConstraintLayout您需要在 CardView 中添加 2 个约束

app:layout_constraintTop 

app:layout_constraintBotttom

您还需要添加以下行
app:layout_constrainedHeight="true"

app:layout_constraintHeight_max="300dp" // Change this to your maximum height

它应该看起来像这样
<androidx.cardview.widget.CardView 
android:layout_width="0dp"
android:layout_height="wrap_content"
app:cardCornerRadius="@dimen/card_radius_10"
app:layout_constrainedHeight="true"
app:layout_constraintHeight_max="300dp" // Change this to your maximum height
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent" //Change based on your layout
app:layout_constraintTop_toTopOf="parent"> //Change based on your layout

关于android - 如何将最大高度设置为scrollView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59030100/

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