1
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/11" />

</LinearLayout>

それはすべて、Androidプロジェクトの通常のセットアップであり、これを入れて、各フォルダーの画像11をデフォルトのアイコンと同じサイズにします。このエラーのためにエミュレーターに入れることができず、実行されません。 、 あなたは私を助けることができます?

4

2 に答える 2

7

ドローアブルの名前を文字を含む名前に変更します。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/my_drw" />

</LinearLayout>
于 2012-11-02T15:34:35.843 に答える
0

私も同様の問題に直面しました。私のプロジェクトのresフォルダーには、描画可能なフォルダーがありませんでした。「drawable 」という名前の新しいフォルダを作成し、それに画像xyz.jpgを追加しました。しかし、 R.javaファイルで同じエラーが発生しました。次に、 ic_launcher.pngファイルをdrawable-hdpiフォルダーからdrawableにコピーすると、機能しました。どういうわけか、フォルダにはic_launcher.png画像が必要だと感じました。

于 2014-05-30T06:47:57.643 に答える