What are the aspect ratios for all Android phone and tablet devices?

I'm looking for a list of all screen aspect ratios for popular Android based Phones and Tablets.

216499 次浏览

可以有把握地认为,流行的手机是 WVGA800或更大。尽管有大量的 HVGA 屏幕,他们是次要的关注。

机器人屏幕尺寸列表

Http://developer.android.com/guide/practices/screens_support.html

Aspect ratio calculator

http://andrew.hedges.name/experiments/aspect_ratio/

几个月前,我研究了几十款最流行的 Android 设备,得出了同样的结论。我发现每个 Android 设备都有以下几种长宽比(从最正方形到最长方形) :

  • 4:3
  • 三比二
  • 八点五分
  • 五点三分
  • 16:9

如果你把肖像设备和风景设备分开考虑,你也会发现这些比例(3:4,2:3,5:8,3:5和9:16)是相反的


More complete answer here: stackoverflow community spreadsheet of Android device resolutions and DPIs

如果有人想要更多的视觉参考:

aspect_ratio_visual_reference

十进制近似参考表:

╔══════════════════════════╦════════════════════════╦════════════════════════╗
║       aspect ratio       ║     decimal approx.    ║     decimal approx.    ║
║ [long edge x short edge] ║ [short edge/long edge] ║ [long edge/short edge] ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║         19.5 x 9         ║        0.462...        ║        2.167...        ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║          19 x 9          ║        0.474...        ║         2.11...        ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║        ~18.7 x 9         ║        0.482...        ║        2.074...        ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║         18.5 x 9         ║        0.486...        ║        2.056...        ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║          18 x 9          ║           0.5          ║            2           ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║          19 x 10         ║        0.526...        ║           1.9          ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║          16 x 9          ║         0.5625         ║        1.778...        ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║           5 x 3          ║           0.6          ║        1.667...        ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║          16 x 10         ║          0.625         ║           1.6          ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║           3 x 2          ║        0.667...        ║           1.5          ║
╠══════════════════════════╬════════════════════════╬════════════════════════╣
║           4 x 3          ║          0.75          ║        1.333...        ║
╚══════════════════════════╩════════════════════════╩════════════════════════╝

更新日志:

  • May 2018: Added 56x27 === ~18.7x9 (Huawei P20), 19x9 (Nokia X6 2018) and 19.5x9 (LG G7 ThinQ)
  • 2017年5月: 新增 19x10(必备电话)
  • 2017年3月: 新增 18.5x9(三星 Galaxy S8)和 18x9(LG G6)

索尼平板电脑 P 是老的,但它可以切换32:15和32:30之间的每个应用程序在横向模式,反之亦然,在纵向模式,所以这是一个最低范围的目标

the best way to calculate the equation is simplified. That is, find the maximum divisor between two numbers and divide:

ex.

1920:1080 maximum common divisor 120 = 16:9
1024:768  maximum common divisor 256 = 4:3
1280:768  maximum common divisor 256 = 5:3

也可能发生一些方法