我正在尝试创建一个环形的幻灯片按钮
drawable文件夹中的rounded_cell.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false" >
<solid android:color="#FFFFFF" />
<size
android:height="15dp"
android:width="15dp" />
<stroke
android:width="1dp"
android:color="@color/l_blue" />
</shape>
答案 0 :(得分:1)
步骤1:在“可绘制文件夹”中创建一个button.xml。
第2步:添加提及代码。
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#FFF" />
<stroke android:width="1sp"
android:color="#FF0000"/>
第3步:将其应用于按钮