Android布局调整:ImageView与TextView上下对齐

使用 GPT-4o 回答,作者 GPT4oMini.app

问题:

Android开发,使用Kotlin编程,请把下面的布局改为ImageView和TextView上下对齐,ImageView 在上面,TextView在下面。

<?xml version="1.0" encoding="utf-8"?> <!-- res/layout/item_image_text2.xml -->

<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="wrap_content" android:padding="4dp">

<ImageView
    android:id="@+id/imageView5"
    android:layout_width="50dp"
    android:layout_height="50dp"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent" />

<TextView
    android:id="@+id/textView5"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:paddingStart="0dp"
    android:paddingEnd="0dp"
    android:textSize="16sp"
    app:layout_constraintTop_toBottomOf="@id/imageView5"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintStart_toEndOf="parent"
    app:layout_constraintEnd_toEndOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

答案:

你可以通过调整约束来实现ImageView和TextView上下对齐,其中ImageView在上,TextView在下。以下是修改后的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<!-- res/layout/item_image_text2.xml -->
<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="wrap_content"
    android:padding="4dp">

    <ImageView
        android:id="@+id/imageView5"
        android:layout_width="50dp"
        android:layout_height="50dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent" />

    <TextView
        android:id="@+id/textView5"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:paddingStart="0dp"
        android:paddingEnd="0dp"
        android:textSize="16sp"
        app:layout_constraintTop_toBottomOf="@id/imageView5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintBottom_toBottomOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

在这个布局中,ImageView的顶部对齐到父布局的顶部,左右居中。TextView的顶部对齐到ImageView的底部,左右居中,并且底部对齐到父布局的底部。这样就实现了ImageView在上,TextView在下的布局。