gpt4 book ai didi

android - 当 Root View 是 ScrollView 时,如何正确地使 ConstraintLayout 内的 View 占用可见区域的百分比高度

转载 作者:行者123 更新时间:2023-12-04 01:22:52 25 4
gpt4 key购买 nike

我有这种 View 层次结构

ScrollView
ConstraintLayout
ImageView

LinearLayout
TextView
TextView
TextView
...

我想要实现的是 ImageView 垂直占据可见屏幕的 65%...但是由于 Root View 是 ScrollView,ImageView 占据了可滚动区域的 65%...我想要 ImageView占可见区域的 65%。

为了得到这样的东西,最好的方法是什么?

enter image description here

源代码:

<ScrollView
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:fillViewport="true"
tools:context=".MainActivity">

<android.support.constraint.ConstraintLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="0dp"
android:scaleType="centerCrop"
android:src="@drawable/rain"
app:layout_constraintHeight_percent=".65"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/header">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="AAAAAA"
android:textSize="50dp"/>

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="BBBB"
android:textSize="50dp"/>

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="CCCCC"
android:textSize="50dp"/>

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="DDDDD"
android:textSize="50dp"/>



</LinearLayout>
</android.support.constraint.ConstraintLayout>

</ScrollView>

提前致谢

最佳答案

在 ScrollView 中,您不能将高度设置为百分比。

我建议您使用纵横比来满足您的要求。

在您的 ImageView 中设置高度 0dp 并设置高度的尺寸比。

android:layout_height="0dp"
app:layout_constraintDimensionRatio="H,1:1" //change ratio as per your image ratio

关于android - 当 Root View 是 ScrollView 时,如何正确地使 ConstraintLayout 内的 View 占用可见区域的百分比高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55226187/

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