本文介绍了Android的屏幕尺寸华电国际,LDPI,MDPI的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有我需要适合所有的屏幕尺寸方面的背景。我有三个文件夹,华电国际
, LDPI
和 MDPI
的可绘,但在模拟器没有任何referense什么分辨率华电国际
是什么 MDPI
和 LDPI
是
I have a background that I need fit in all screen sizes. I have three folders, hdpi
, ldpi
and mdpi
for drawables, but in the emulator there isn't any referense to what resolution hdpi
is and what mdpi
and ldpi
are.
推荐答案
您应该阅读支持多个屏幕。你必须在你的模拟器中定义的DPI。 240是华电国际,160是MDPI及以下,通常是LDPI。
You should read Supporting multiple screens. You must define dpi on your emulator. 240 is hdpi, 160 is mdpi and below that are usually ldpi.
提取
320dp: a typical phone screen (240x320 ldpi, 320x480 mdpi, 480x800 hdpi, etc).
480dp: a tweener tablet like the Streak (480x800 mdpi).
600dp: a 7" tablet (600x1024 mdpi).
720dp: a 10" tablet (720x1280 mdpi, 800x1280 mdpi, etc).
这篇关于Android的屏幕尺寸华电国际,LDPI,MDPI的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!