我有一个由ScrollView
和ConstraintLayout
作为容器的布局。这个容器有一些视图,我希望其中一个视图具有最大高度,所以我使用了layout_constrainedHeight_max
,但是在启动应用程序时,该视图只是消失了。
这是我的xml示例:
<ScrollView
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"
android:fillViewport="true">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:isScrollContainer="true">
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
app:layout_constrainedHeight="true"
app:layout_constraintHeight_max="20dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@mipmap/ic_launcher" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="0dp"
android:layout_height="1500dp"
android:layout_margin="8dp"
android:background="@android:color/darker_gray"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView1"/>
</android.support.constraint.ConstraintLayout>
</ScrollView>
我简化了xml,只用最少的组件重现了该错误。我尝试了很多事情,但是 imageView1 一直消失了,我不明白为什么。 fillViewport
或isScrollContainer
并没有改变,我正在使用1.1.3版的约束布局。如果约束布局不在ScrollView
中,或者如果我不使用layout_constraintHeight_max
(android:maxHeight不起作用),但两者的组合不起作用,则将出现ImageView1。那我想念什么呢?
答案 0 :(得分:0)
事实证明,要使layout_constraintWidth_max
和layout_constraintHeight_max
工作,必须设置所有约束(左,右,上,下)。它不适用于 imageView1 ,因为它是顶部具有可变高度的视图以及与之相关的其他视图。
我假设您要使 imageView1 的最大高度为 20dp 。为此,请尝试以下代码:
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:adjustViewBounds="true"
android:maxHeight="20dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@mipmap/ic_launcher" />
这里的变化是:
android:maxHeight="20dp"
和android:adjustViewBounds="true"
app:layout_constrainedHeight="true"
和app:layout_constraintHeight_max="20dp"
我还建议您将layout_height
的{{1}}属性设置为ConstraintLayout
,因为假设wrap_content
包含一个比自己大的孩子。