Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: drawable 和 drawable-mdpi 之间的区别
我可以理解drawable-ldpi、drawable-mdpi和drawable-hdpi的作用以及它们需要的比例大小。但是这个文件夹“drawable”怎么样,这个文件夹是干什么用的?我应该在这里放什么分辨率的图像?
这是放置基于 xml 的可绘制对象(级别列表、状态列表等)的好地方(通常也是唯一明智的地方)。有关所有可能性,请参阅可绘制资源的文档。这些drawables指的是其他drawables,通常在密度特定的文件夹中。
基本上这是“默认”文件夹,当 Android 无法找到最匹配的文件夹时使用。所以举个例子,如果你只有“drawable”和“drawable-ldpi”文件夹,但设备实际上是mdpi,那么“drawable”文件夹中的资源就会被选中。