gpt4 book ai didi

安卓用户界面元素

转载 作者:行者123 更新时间:2023-11-29 23:22:51 26 4
gpt4 key购买 nike

我想创建一个列表,其 UI 是这样的。

UI Element

我无法使用两个 TextView 创建相同的 UI。请帮我弄清楚如何仅使用两个 TextView 创建此 UI。

名称的第一个 TextView (James)
消息的第二个 TextView(带我...)

提前致谢。

最佳答案

你可以像这样使用constraintLayout

<?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"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<TextView
android:id="@+id/textTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:constraintStart_toEndOf="@id/image"
app:constraintEnd_toEndOf="parent" />

<TextView
android:id="@+id/textMessage"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:constraintTop_topBottomOf="@id/textTitle"
app:constraintStart_toEndOf="@id/image"
app:constraintEnd_toEndOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

关于安卓用户界面元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53973227/

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