我只是想将图像添加到我的 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" />
我感谢你的帮助。