如何在Cardview中创建带有半径的垂直线?

时间:2018-12-31 13:45:43

标签: android

我有app:cardCornerRadius="20dp"的卡片视图

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="match_parent"
    android:orientation="vertical">


    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="140dp"
        android:layout_margin="10dp"
        android:clickable="true"
        android:focusable="true"
        android:foreground="?attr/selectableItemBackgroundBorderless"
        app:cardCornerRadius="20dp">



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

</LinearLayout>

现在我要在此右侧添加两条垂直实线。 像这样:

enter image description here

垂直线也必须具有半径。

编辑:

我这样写:

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="140dp"
    android:layout_margin="10dp"
    android:clickable="true"
    android:focusable="true"
    android:foreground="?attr/selectableItemBackgroundBorderless"
    app:cardCornerRadius="50dp">


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <View
            android:layout_width="5dp"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:layout_marginRight="10dp"
            android:background="@color/colorBlack" />


    </RelativeLayout>

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

并获得以下结果:

enter image description here

我需要线的半径

3 个答案:

答案 0 :(得分:0)

您可以通过添加视图来添加任意数量的内容,例如:

 <View
    android:layout_width="2dp"
    android:layout_height="match_parent"
    android:layout_margin="@dimen/medium_margin"
    android:background="@color/darkGray" />

答案 1 :(得分:0)

您可以在cardview xml中使用一个View,这将为您提供所需的xml垂直线。

参见该帖子以获取参考:vertical line

答案 2 :(得分:-1)

您只需要两行的9-patch。而已。像这样:

enter image description here

如果您以API 21+为目标,那么您甚至不需要关心圆角。无论如何,背景将被切成CardView的轮廓。如果您定位的是较早的Android版本,则需要将这些圆角添加到背景可绘制对象中,但这并没有太大变化。