直接上代码
下面是圆角带背景的
是行是设置圆角的,直接写这个等同于下面设置四个角
<corners android:radius="5dp"/> <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <corners //这里可以设置四个角的弧度,也可以单独设置 android:bottomLeftRadius="5dp" android:bottomRightRadius="5dp" android:topLeftRadius="5dp" android:topRightRadius="5dp" /> <solid android:color="#ffffff" /> </shape> 下面是圆角线,不带背景的(如果想设置背景直接加上<solid android:="#ffffff">就行,根据自己的需求设置颜色) <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <corners android:bottomLeftRadius="1dp" android:bottomRightRadius="1dp" android:topLeftRadius="1dp" android:topRightRadius="1dp" /> <stroke android:width="1dp" android:color="#D8D8D8"/> </shape>