0

我只是想将图像添加到我的 android 活动中,但出现以下错误:

res\drawable-hdpi\restLogo.png: Invalid file name: must contain only [a-z0-9_.]

正如你所看到的,这个错误没有任何意义,至少对我来说是这样。文件名仅包含 az 0-9_。啊为什么我会收到这个错误?

这是布局文件中的内容:

    <ImageView
    android:id="@+id/imageView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/imageView1"
    android:contentDescription="@string/Logo" 
    style=""
    android:src="@drawable/restLogo" />

我感谢你的帮助。

4

2 回答 2

2

将其更改为restlogo.pngrest_logo.png。当他们说时a-z,他们的字面意思只是小写a-z

于 2013-01-11T18:52:11.923 回答
1
res\drawable-hdpi\restLogo.png:

图片名称应为小写,因此将其更改为 restlogo.png 或其他任何内容,但要小写

于 2013-01-11T18:53:35.833 回答