你可以只在1個文件夾中存儲圖像但是, 例如你有設備是mdpi ..它看起來不錯,但如果你在ldpi上運行你的應用程序,android會自動縮放你的圖像,它會看起來像醜(低質量)。所以啊,你需要爲不同類型的設備不同分辨率的圖像基礎.. 所以MDPI分辨率的圖像去繪製,MDPI 所以華電國際分辨率的圖像去繪製,華電國際ETCC ..
這是一些名單我互聯網上找到關於屏幕尺寸,也許你會發現它的幫助:
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)
而且這將是很好的閱讀公文網站關於支持不同類型的屏幕。
我建議你去通過這個鏈接HTTP圖像://developer.android.com/guide/practices/screens_support.html – 2013-04-04 11:29:10