不同屏幕尺寸(以像素为单位)的不同资源
是否有内置功能可以为不同的屏幕尺寸(以像素为单位)提供不同的资源,
我发现了一种按 dpi 分隔它们的解决方案(使用 hdpi,ldpi、mdpi 或 sw320dp、sw720dp 文件夹): http://developer.android.com/guide/topics/resources /providing-resources.html#AlternativeResources
但我不关心密度!
我的应用程序主要使用位图和画布,我想要的只是避免这些位图的缩放(和平滑)。
Is there a build-in functionality to provide different resources for different screen sizes (in pixels)
What I found is a solution to separate them by dpi (using hdpi, ldpi, mdpi or sw320dp, sw720dp folders):
http://developer.android.com/guide/topics/resources/providing-resources.html#AlternativeResources
But I don't care about densities!
My application mostly uses Bitmaps and Canvas, and all I want is to avoid scaling (and smoothing) of these bitmaps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过使用
drawable-nodpi
或raw
作为位图?Have you tried using
drawable-nodpi
orraw
for your bitmaps?您无法指定确切的像素大小,但您可以将 4 个类别用作布局文件夹的修饰符。布局小、布局正常、布局大、布局超大。
You can't specify by exact pixel sizes but there are 4 categories that you can use as modifiers to your layout folders. layout-small, layout-normal, layout-large, layout-xlarge.