今天我创建了一个可绘制的文件,之后我在引用中使用CTRL + Space来绘制新的可绘制的文件,但没有显示出来,也许您可以为我找到解决方案?
也许这是我在drawable中的代码
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
</shape>
答案 0 :(得分:1)
尝试使用此代码
<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="@android:color/white" />
</shape>