完美的智能手机屏幕尺寸,Android平板电脑

时间:2014-08-01 05:57:58

标签: android splash-screen

我想要智能手机和桌子的完美启动屏幕尺寸。

我有智能手机的尺寸,但看到另外一些显示不同尺寸的帖子后我感到困惑。

适用于智能手机:

drawable-hdpi, drawable-mdpi, drawable-xhdpi, drawable-xxhdpi

对于平板电脑:

drawable-large, drawable-small, drawable-normal, drawable-xlarge<br><br>

现在,我的尺码如下:

  • xlarge(xhdpi):640x960
  • 大(hdpi):480x800
  • medium(mdpi):320x480
  • small(ldpi):240x320

    来自Supporting Multiple Screens

  • xlarge屏幕至少为960dp x 720dp

  • 大屏幕至少为640dp x 480dp
  • 正常屏幕至少为470dp x 320dp
  • 小屏幕至少为426dp x 320dp



请帮我解决这个问题。并告诉我平板电脑飞溅屏幕尺寸的大小。

1 个答案:

答案 0 :(得分:0)

首先,问题含糊不清。闪屏尺寸是什么意思?由于您将全屏加载启动画面,屏幕的像素是什么意思?我正在进行假设,要求不同屏幕尺寸的图像像素并提供答案。

我发现Perfect Splash屏幕尺寸的图像尺寸也是相对的,因为它还取决于用于启动画面的方法。由于您需要根据屏幕的大小以编程方式设置您使用的图像,如果需要将完全填充到某些百分比如果您保留足够的像素图像(if the splash screen is loaded as an activity for a specified amount of time from your MainAtivity),没有像素的屏幕会产生很大影响。现在,如果您正在使用主题进行调用来创建启动画面的可绘制方法(例如在Splash Screens the Right Way文章中),那么图像的像素真的很重要,因为图像的大小将由不同的用于不同屏幕尺寸的图像的像素。答案完全在android splash screen sizes for ldpi,mdpi, hdpi, xhdpi displays帖子中提供。

对于像我这样的懒惰开发者:P,我将提供以下最小屏幕尺寸(以像素为单位)的值,这些值由Google(the statistics on the relative sizes of devices on Google's dashboard)提供。

Android移动设备:

LDPI- 426x320

MDPI- 470x320

HDPI- 640x480

XHDPI- 960x720

Android平板电脑设备:

LDPI- 200x320

MDPI- 320x480

HDPI- 480x800

XHDPI- 720px1280px

当然,对于可伸缩的图像,始终建议使用9 Patch images