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.
当我查看: http ://replicaisland.googlecode.com/svn/trunk/res/drawable/ 并发现它只有一组图像时,我想知道这是为什么。显然我错过了一些东西,因为我认为每个人都需要三组图像,这样你就可以支持所有的安卓设备。(电话)我还没有查看所有代码,但是克里斯只是调整图像大小还是不支持其他设备?
显然我错过了一些东西,因为我认为每个人都需要三组图像,这样你就可以支持所有的安卓设备。
拥有四组图像(-ldpi、-mdpi、-hdpi、-xhdpi)通常是一个好主意……如果您使用的是基于小部件的框架,并且对于操作系统使用的图像(例如,启动器图标)。
-ldpi
-mdpi
-hdpi
-xhdpi
如果您正在编写游戏——尤其是像 Replica Island 那样使用 OpenGL 的游戏——您可能会使用不同的技术。在 Replica Island 的案例中,它似乎DrawableBitmap处理“位图分辨率和显示分辨率之间”的缩放。
DrawableBitmap