Android仪表板被视为小尺寸,普通尺寸,大尺寸和超大屏幕尺寸,以英寸为单位?

时间:2016-03-04 15:03:22

标签: android

阅读Android Dashboards我可以看到类别(小,普通,大和Xlarge)中屏幕大小的分离,但我找不到这些类别对应的实际大小。 我想要这样的东西:

  • 正常= 4''到5''
  • 大= 5''到6''

所以我的问题是:

Android仪表板的小尺寸,普通尺寸,大尺寸和超大屏幕尺寸是多少英寸?

2 个答案:

答案 0 :(得分:3)

the documentation中的定义以dp表示:

  
      
  • xlarge屏幕至少为960dp x 720dp
  •   
  • large屏幕至少为640dp x 480dp
  •   
  • normal屏幕至少为470dp x 320dp
  •   
  • small屏幕至少为426dp x 320dp
  •   

英寸有160dp。所以,你得到:

  • xlarge屏幕至少为6“x 4.5”
  • large屏幕至少为4“x 3”
  • normal屏幕至少为~2.9“x 2”
  • small屏幕至少为~2.7“x 2”

答案 1 :(得分:0)

这是旧信息。请参阅此链接:http://developer.android.com/guide/practices/screens_support.html

A set of four generalized sizes: small, normal, large, and xlarge

Note: Beginning with Android 3.2 (API level 13), these size groups are deprecated in favor of a new technique for managing screen sizes based on the available screen width.

但这是尺寸:

xlarge screens are at least 960dp x 720dp
large screens are at least 640dp x 480dp
normal screens are at least 470dp x 320dp
small screens are at least 426dp x 320dp