您只能将图像存储在 1 个文件夹中,例如,您的设备是 mdpi .. 它在他身上会很好看,但是如果您在 ldpi 上运行您的应用程序,android 会自动缩放您的图像,并且看起来很难看(低质量) . 所以,是的,您需要针对不同类型的设备使用不同分辨率的图像。所以 mdpi 分辨率图像转到 drawable-mdpi 所以 hdpi 分辨率图像转到 drawable-hdpi 等。
这是我在互联网上找到的一些关于屏幕尺寸的列表,也许你会发现它有帮助:
Low density Small screens QVGA 240x320 (120dpi):
layout-small-ldpi (240x320)
layout-small-land-ldpi (320x240)
Low density Normal screens WVGA400 240x400 (x432) (120dpi):
layout-ldpi (240 x 400 )
layout-land-ldpi (400 x 240 )
Medium density Normal screens HVGA 320x480 (160dpi):
layout-mdpi (320 x 480 )
layout-land-mdpi (480 x 320 )
Medium density Large screens HVGA 320x480 (160dpi):
layout-large-mdpi (320 x 480 )
layout-large-land-mdpi (480 x 320)
Galaxy Tab ( 240 dpi ):
layout-large (600 x 1024)
layout-large-land (1024 x 600)
High density Normal screens WVGA800 480x800 (x854) (240 dpi):
layout-hdpi (480 x 800)
layout-land-hdpi (800 x 480)
Xoom (medium density large but 1280x800 res) (160 dpi):
layout-xlarge (800 x 1280)
layout-xlarge-land (1280 x 800)
此外,最好阅读有关支持不同类型屏幕的官方文档站点。