做一个类似下面的布局

Make a similar layout like the one below

我正在设计布局,我想制作与下图类似的布局。我不知道我应该用什么来制作这个布局?我使用过 Listview 和 Recycler View,但我不知道我是否可以使用它们来制作这样的布局?

谁有关于如何制作类似布局的教程?

最好的方法是使用 Recycler View 并在所有项目之间添加分隔线:看这个 How to add dividers and spaces between items in RecyclerView?

并使用此项目布局:

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView 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="wrap_content"
        android:orientation="vertical"
        app:cardBackgroundColor="@color/white"
        app:cardCornerRadius="8dp"
        app:cardElevation="8dp">

    <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        <androidx.constraintlayout.widget.ConstraintLayout
                android:id="@+id/message_content_layout"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintEnd_toStartOf="@+id/message_end_green_view"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                android:padding="8dp">

            <TextView
                    android:id="@+id/tv_received_message_key"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Received message:"
                    android:textColor="@color/green"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="parent"
                    android:layout_marginStart="4dp"/>

            <TextView
                    android:id="@+id/tv_received_message_value"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="8dp"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintStart_toEndOf="@+id/tv_received_message_key"
                    app:layout_constraintTop_toTopOf="parent"
                    tools:text="Message" />

            <View
                    android:id="@+id/tv_message_divider"
                    android:layout_width="0dp"
                    android:layout_height="2dp"
                    android:background="@color/grey_light"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toBottomOf="@+id/tv_received_message_key"
                    android:layout_marginTop="8dp"/>

            <TextView
                    android:id="@+id/tv_reply_message_key"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Repley message:"
                    android:layout_marginTop="8dp"
                    android:textColor="#4caf50"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toBottomOf="@id/tv_message_divider"
                    android:layout_marginStart="4dp"/>

            <TextView
                    android:id="@+id/tv_reply_message_value"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="8dp"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintStart_toEndOf="@+id/tv_reply_message_key"
                    app:layout_constraintTop_toTopOf="@id/tv_reply_message_key"
                    app:layout_constraintBottom_toBottomOf="@id/tv_reply_message_key"
                    tools:text="Message" />

        </androidx.constraintlayout.widget.ConstraintLayout>

        <View
                android:id="@+id/message_end_green_view"
                android:layout_width="8dp"
                android:layout_height="0dp"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintBottom_toBottomOf="parent"
                android:background="@drawable/shape_rectangle_green"/>

    </androidx.constraintlayout.widget.ConstraintLayout>


</androidx.cardview.widget.CardView>

其中 shape_rectangle_green 是这个可绘制对象:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">

    <solid android:color="#4caf50" />

    <corners
            android:bottomLeftRadius="0dp"
            android:bottomRightRadius="8dp"
            android:topLeftRadius="0dp"
            android:topRightRadius="8dp" />
</shape>

我让你更改边距、填充和颜色。

使用下面的布局作为您的 RecyclerView

的项目
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:cardCornerRadius="15dp"
    app:cardMaxElevation="3dp"
    android:elevation="3dp"
    app:cardUseCompatPadding="true"
    app:cardBackgroundColor="@android:color/white">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <LinearLayout
            android:layout_weight=".95"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="15dp">
                <TextView
                    android:id="@+id/tv_received_message_heading"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Received Message:"/>
                <TextView
                    android:id="@+id/tv_received_message"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="First Received Message"
                    android:layout_marginStart="5dp"/>
            </LinearLayout>
            <View
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:background="@color/colorPrimary"
                android:layout_marginStart="10dp"
                android:layout_marginEnd="10dp"/>
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="15dp">
                <TextView
                    android:id="@+id/tv_reply_message_heading"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Reply Message:"/>
                <TextView
                    android:id="@+id/tv_reply_message"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="First Reply Message"
                    android:layout_marginStart="5dp"/>
            </LinearLayout>
        </LinearLayout>
        <View
            android:layout_weight=".05"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:background="@color/colorPrimary"/>
    </LinearLayout>
</androidx.cardview.widget.CardView>

View

background 属性中添加您的颜色

以上代码的输出是:

希望对你有用。