invalid resource directory name

android的res目录是固定的,只能是下面的几种,如果加了其他的目录,它会报‘invalid resource directory name'的错误,其实加了其它系统不认的目录,系统也不能提供相应的象Resources.getDrawable() and Resources.getColor(), Resources.openRawResource() 去引用资源呀。
anim
drawable
layout
values
xml
raw
color
此外,是不是能采用子目录的方式呢?这样编辑器是可以通过的,不会报错
注:采用子目录的方式可以编译通过,但是通过R无法找到子目录和子目录中的资源

你可能感兴趣的:(android,xml)