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 回答