描画可能なディレクトリに 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 をドローアブルに変換できませんでした。赤い円が表示されません。(別のウィジェットが表示されるように、そこにボタンを配置しました)」というエラーが表示されます。
このエラーの原因。このフォーラムの別の投稿から、動作するはずの例を入手しました。ありがとう、ゲイリー