11 lines
366 B
XML
11 lines
366 B
XML
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="oval"> <!-- 设置形状为圆形 -->
|
|
|
|
<solid android:color="#ffff4874" /> <!-- 设置填充颜色 -->
|
|
|
|
<stroke
|
|
android:width="2dp"
|
|
android:color="#30ff4874" /> <!-- 设置边框颜色为黑色并带有 70% 的不透明度 (BB 是 alpha 值) -->
|
|
|
|
</shape>
|