gpt4 book ai didi

android - 使用 ConstraintLayout 将 ImageView 与 TextView 基线对齐

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:11:08 26 4
gpt4 key购买 nike

是否可以使用 ConstraintLayoutImageView 的底部与 TextView 的基线对齐?过去使用 RelativeLayout 很容易,但它似乎从 ConstraintLayout 中消失了。 :(

最佳答案

是的,可以在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>

关于android - 使用 ConstraintLayout 将 ImageView 与 TextView 基线对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50709086/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com