无效的资源目录名称:E:\ workspace \ ......... \ res red.png

时间:2015-03-25 06:42:38

标签: android

我一直坚持这个,

I have saved "red.png" in res folder,,but still getting error as
"invalid resource directory name: E:\workspace\.........\res red.png",

我试过

 1.cleaning and rebuilding project
 2.restart the eclipse
 3.pasted "red.png" in sub folders of drawable ,

但没有得到解决方案。 请建议我

3 个答案:

答案 0 :(得分:0)

我得到了解决方案,

created a folder named "drawable" 
and pasted the image inside that folder, 

感谢您的宝贵回应

答案 1 :(得分:0)

有一种简单的方法可以在res / drawable文件夹的布局中使用图像文件。 将此图像放在drawable文件夹中并写入xml文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@drawable/red"
  android:orientation="vertical" >
</LinearLayout>

不要使用像.png

这样的文件扩展名

答案 2 :(得分:0)

在android中你无法直接将图像设置为res文件夹For putting images ***you have to create drawable folders*** like drawable-hdpi , drawable-xhdpi etc,因为在android中我们有很多分辨率。

如需了解更多信息,请查看以下链接

  

http://developer.android.com/guide/practices/screens_support.html