<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:top="4dp"
android:right="4dp"
android:bottom="4dp"
android:left="4dp">
<shape
android:shape="oval">
<solid android:color="#ff0000" />
</shape>
</item>
<item>
<shape
android:shape="oval">
<stroke android:width="2dp"
android:color="#ff0000"/>
</shape>
</item>
</layer-list>
取自这里:
https://stackoverflow.com/a/36003935/6007737
它是如何给我一个环形的?
layer-list 的工作原理以及 item 标签的 top、right、bottom 和 left 属性有什么作用?
我们不能只使用环形吗?为什么要使用椭圆形来制作环形?