我的可绘制目录中有一个名为 off.xml 的 xml 文件(应该是一个红色圆圈)...
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
<gradient android:startColor="#FFFF0000" android:endColor="#FFFF0000"
android:angle="270"/>
在我的主页上,我有以下 xml...
<LinearLayout android:layout_width="match_parent"
android:layout_height="50dip" android:orientation="horizontal">
<View android:layout_width="40dip"
android:layout_height="0dip" android:layout_weight="1"
android:background="@drawable/off" />
</LinearLayout>
我收到错误“无法将 @drawable/off 转换为可绘制对象。红色圆圈未显示。(我在此处放置了一个按钮以确保显示另一个小部件)
是什么导致了这个错误。我从这个论坛的另一个帖子中得到了这个应该可以工作的例子。谢谢,加里