问题
如何在ConstraintLayout中居中ImageView和TextView,确保无论ConstraintLayout的高度如何,它们都保持居中,同时确保ImageView在必要时收缩以保持TextView的可见性?
预期效果:
如果ConstraintLayout较大(居中,但不大于原始图像):
如果ConstraintLayout较小(居中、收缩图像、文本仍然可见):
我构建了以下可重复的示例:
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="500dp">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:srcCompat="@tools:sample/avatars"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@id/textView" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingHorizontal="@dimen/primary_margin"
android:text="Just a text"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
编辑
到目前为止我找到的最接近的解决方案如下。然而,唯一剩下的缺点是我需要手动指定最大宽度和高度,而我的理想方案是根据图像的实际宽度和高度动态调整它们。
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="16dp"
app:layout_constraintHeight_max="200dp"
app:layout_constraintWidth_max="200dp"
tools:srcCompat="@tools:sample/avatars"
app:layout_constraintVertical_chainStyle="packed"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@id/textView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingHorizontal="@dimen/primary_margin"
android:text="Just a text"
app:layout_constraintTop_toBottomOf="@id/imageView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
2条答案
按热度按时间t9aqgxwy1#
您需要使用压缩垂直链接。你可以在这个视频Link中看到更多关于链条的内容。下面是如何将图像和文本居中的代码片段。
luaexgnf2#
如果您采用最接近的解决方案,请尝试再次将
ImageView
的高度和宽度设置为wrap_content
(以便以其原始大小显示),但添加app:layout_constrainedWidth="true"
和app:layout_constrainedHeight="true"
。这基本上可以让你定义你想要的高度和宽度(即无论图像大小实际上是什么),而且还强制约束,因此其作用类似于0dp
(即,MATCH_CONSTRAINT
):以下是 Phone 和 Wear OS Square 参考设备模板中的相同布局:
实际的
ImageView
是扭曲的(因为两个维度都试图调整为wrap_content
),但图像保持其纵横比以适应两个维度(如果您使用默认的scaleType
)。