首页 > 解决方案 > 如何使用自定义形状创建 RecycleView?

问题描述

我用这样的自定义形状制作了一个 RecycleView,但是我发现很难在左右两侧制作一个半圆。我应该在 .xml 文件中添加什么?

标签: androidandroid-studioandroid-recyclerviewandroid-cardviewshapes

解决方案


您可以将此布局用作您的行

    <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="80dp"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_margin="10dp"
    app:cardCornerRadius="10dp"
    >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"

        >
   <View
       android:layout_width="20dp"
       android:layout_height="20dp"
       android:layout_gravity="center"
       android:layout_marginStart="-10dp"
       android:background="@drawable/shape_example_circle"
       />
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        >
`enter code here`Make your view here
    </RelativeLayout>
        <View
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_gravity="center"
            android:layout_marginEnd="-10dp"
            android:background="@drawable/shape_example_circle"
            />
    </LinearLayout>
</android.support.v7.widget.CardView>

小圆可绘制

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval"
    >
<size android:height="@dimen/dp_20"
    android:width="@dimen/dp_20"/>
    <solid android:color="@color/greyish"/>

</shape>

推荐阅读