使用ConstraintLayout将ImageView与TextView基线对齐

时间:2018-06-05 21:19:16

标签: android android-constraintlayout

是否可以使用ImageViewTextView的底部与ConstraintLayout的基线对齐?以前使用RelativeLayout很容易,但它似乎已从ConstraintLayout消失。 :(

2 个答案:

答案 0 :(得分:5)

是的,您可以使用

在constraintLayout中实现
android:baselineAlignBottom="true"
app:layout_constraintBaseline_toBaselineOf="@+id/textView"


请检查以下代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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/imageView8"
        android:layout_width="wrap_content"
        android:layout_height="52dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:baselineAlignBottom="true"
        app:layout_constraintBaseline_toBaselineOf="@+id/textView33"

        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.815"
        app:layout_constraintStart_toStartOf="parent"
        app:srcCompat="@drawable/home_96" />

    <TextView
        android:id="@+id/textView33"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="16dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:text="TextView"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.59"
        app:layout_constraintStart_toStartOf="parent" />
</android.support.constraint.ConstraintLayout>

答案 1 :(得分:-1)

在ImageView中执行:

null

这会将图像的底部对齐到textview的底部

如果您希望图像略高于文本,请执行以下操作:

app:layout_constraintBottom_toBottomOf="@id/textview"

或者,如果您希望它低于它,请执行:

app:layout_constraintBottom_toTopOf="@id/textview"