AndroidStudio新建项目为什么没有drawable-xhdpi这样的文件夹了

AndroidStudio新建项目为什么没有drawable-xhdpi这样的文件夹了?

google是出于什么考虑吗?

android studio是自动识别大小,自动适配,不像eclipse那么麻烦

mipmap-hdpi等文件夹 和drawable-xhdpi 是相同功能的

mipmap替换了drawable。
用法:
miamap: android:src="@mipmap/xxx"
好处:把图片放到mipmap可以提高系统渲染图片的速度,提高图片质量,减少GPU压力

Google已经不推荐使用drawable储存图片了 建议用mipmap 不过也是可以用新建drawable-hdpi文件夹进行储存的 两种效果都是一样的

android studio 与  eclipse 不一样