Как нанести границу на одну сторону CardView? - PullRequest
0 голосов
/ 29 апреля 2019

Я пытаюсь создать пользовательский CardView с цветной округлой рамкой с левой стороны. Как я могу достичь ниже?

Desired CardView

Я пробовал 2 разных подхода с использованием FrameLayout внутри CardView. В первом я помещаю фигуру в качестве фона, а в другом я помещаю ImageView с левой стороны.

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_margin="8dp"
    card_view:cardElevation="2dp"
    card_view:cardCornerRadius="5dp">

    <FrameLayout
        android:background="@drawable/card_edge"
        android:layout_width="4dp"
        android:layout_height="match_parent"/>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="16dp"
        android:orientation="vertical">

        <TextView
            style="@style/Base.TextAppearance.AppCompat.Headline"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Title" />

        <TextView
            style="@style/Base.TextAppearance.AppCompat.Body1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Content here" />

    </LinearLayout>

</android.support.v7.widget.CardView>

First try

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView 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"
    app:cardCornerRadius="5dp"
    app:cardElevation="2.5dp"
    android:layout_marginTop="15dp"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:layout_marginBottom="2dp"
    android:id="@+id/background"
    android:background="@drawable/rectangle_skylightblue">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="56.3dp"
            android:orientation="horizontal">

            <TextView
                android:fontFamily="@font/sfpro_display_regular"
                android:id="@+id/text"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="15dp"
                android:layout_weight="1"
                android:text="BASF GUARA - SP"
                android:textColor="#00c0ff"
                android:textSize="15sp" />

            <ImageView
                android:id="@+id/forward"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginRight="11.7dp"
                android:src="@drawable/ic_arrow_skyblue" />
        </LinearLayout>
    </FrameLayout>

    <ImageView
        android:id="@+id/line"
        android:layout_width="5dp"
        android:layout_height="56.3dp"
        android:src="@drawable/rectangle_skyblue" />

</android.support.v7.widget.CardView>

Second try

Однако, как вы можете видеть, ни одна из обеих попыток не достигла желаемого результата, и вторая попытка с использованием ImageView является наихудшей, поскольку цвет будет меняться в зависимости от типа действия. Итак, что мне нужно изменить в первую очередь, чтобы получить детали границы?

...