如何在使用 ConstraintLayout 限制尺寸的同时将 imageView 右对齐

How to align imageView to right while constraining the size using ConstraintLayout

我有以下布局,我想要实现的是将 middle ImageView 与 promo ImageView 的 left 对齐(因此它不会居中,而是被推到对),我知道我可以通过删除此约束规则来做到这一点 app:layout_constraintStart_toEndOf="@+id/logo" 问题是 middle ImageView 大小可能会有所不同,因此如果我删除此约束并且图像大小太大,它将与 logo 图像视图。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">


    <ImageView
        android:id="@+id/logo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="10dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />


    <ImageView
        android:id="@+id/middle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constrainedWidth="true"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/promo"
        app:layout_constraintStart_toEndOf="@+id/logo"
        app:layout_constraintTop_toTopOf="parent" />

    <ImageView
        android:id="@+id/promo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />


</androidx.constraintlayout.widget.ConstraintLayout>

对于常规情况应该是这样的:

对于图片太大的情况,应该是这样的:

属性 app:layout_constraintWidth_default="wrap" 将解决您的问题(宽度设置为 0dp)。中间的 ImageView 将具有与使用 wrap_content 相同的大小,但会受到约束的限制(即它不会扩展到它们之外)。

更新代码:-

<androidx.constraintlayout.widget.ConstraintLayout 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">


<ImageView
    android:id="@+id/logo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="10dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toStartOf="@id/middle"
    app:layout_constraintHorizontal_chainStyle="spread_inside"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<ImageView
    android:id="@+id/middle"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constrainedWidth="true"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toStartOf="@+id/promo"
    app:layout_constraintStart_toEndOf="@+id/logo"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintWidth_default="wrap" />

<ImageView
    android:id="@+id/promo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

针对您的情况检查我的解决方案: 我想我会将你的中间图像包裹在布局中(我的 exp 中的 RelativeLayout),设置 android:layout_width="0dp"

app:layout_constraintEnd_toStartOf="@+id/promo" app:layout_constraintStart_toEndOf="@+id/logo"

所以这个布局不能覆盖你的角落图像。 然后将中间图像放入其中,然后将重力设置在右侧。无论中间图像的大小如何,这都不会导致图像叠加。 ^^ 希望有所帮助。

<RelativeLayout
    app:layout_constrainedWidth="true"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toStartOf="@+id/promo"
    app:layout_constraintStart_toEndOf="@+id/logo"
    app:layout_constraintTop_toTopOf="parent"
    android:layout_width="0dp"
    android:layout_height="wrap_content">
    <ImageView
        android:scaleType="fitCenter"
        android:layout_alignParentEnd="true"
        android:src="@drawable/small"
        android:id="@+id/middle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</RelativeLayout>