Сделайте похожий макет, как показано ниже - PullRequest
0 голосов
/ 16 октября 2019

Я работаю над макетом и хочу создать макет, подобный показанному на рисунке ниже. Я не знаю, что я должен использовать, чтобы сделать этот макет? Я работал с Listview и Recycler View, но я не знаю, смогу ли я использовать их для создания такого макета?

У кого-нибудь есть учебное пособие о том, как мне сделать подобный макет?

Layout

Ответы [ 2 ]

0 голосов
/ 17 октября 2019

Используйте приведенный ниже макет как элемент вашего 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>

Добавьте свой цвет в background атрибут View

Вывод вышеуказанного кода:

enter image description here

Надеюсь, это сработает для вас.

0 голосов
/ 16 октября 2019

Лучший способ - использовать Recycler View и добавить разделитель между всеми элементами: посмотрите на это Как добавить разделители и пробелы между элементами в 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>

Я позволяю вам изменять поля, отступы и цвета.

...