모든 Android 휴대 전화 및 태블릿 기기의 가로 세로 비율은 무엇입니까?
인기있는 Android 기반 휴대 전화 및 태블릿의 모든 화면 종횡비 목록을 찾고 있습니다.
몇 달 전에 수십 개의 가장 인기있는 Android 기기를 살펴보면서 같은 것을 조사했습니다. 모든 Android 기기에는 다음과 같은 종횡비 중 하나 (가장 사각형에서 직사각형까지)가 있음을 발견했습니다.
- 4 : 3
- 3 : 2
- 8 : 5
- 5 : 3
- 16 : 9
또한 가로 세로 장치와 가로 세로 장치를 구분하면 이러한 비율의 역수도 찾을 수 있습니다 (3 : 4, 2 : 3, 5 : 8, 3 : 5 및 9:16).
여기에 더 완전한 대답 : Android 장치 해상도 및 DPI의 stackoverflow 커뮤니티 스프레드 시트
누구나 시각적 참조를 더 원하는 경우 :
소수 근사 참조 표 :
╔══════════════════════════╦════════════════════════╦════════════════════════╗
║ 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) and19.5x9
(LG G7 ThinQ) - May 2017: Added
19x10
(Essential Phone) - March 2017: Added
18.5x9
(Samsung Galaxy S8) and18x9
(LG G6)
It is safe to assume that popular handsets are WVGA800 or bigger. Although, there are a good amount of HVGA screens, they are of secondary concern.
List of android screen sizes
http://developer.android.com/guide/practices/screens_support.html
Aspect ratio calculator
http://andrew.hedges.name/experiments/aspect_ratio/
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
may happen also some approaches
Sony Tablet P는 오래되었지만 가로 모드의 각 앱마다 32:15와 32:30 사이를 전환 할 수 있으며 세로 모드의 경우 그 반대도 가능하므로 목표로하는 최소 범위입니다.
'IT story' 카테고리의 다른 글
Java 또는 C #에서 다중 상속이 허용되지 않는 이유는 무엇입니까? (0) | 2020.08.04 |
---|---|
Ruby 문자열에서“\ n”문자열을 어떻게 제거합니까? (0) | 2020.08.04 |
인앱 결제 테스트 : android.test.purchased 이미 소유 (0) | 2020.08.04 |
Nullable과 함께 DateTime.TryParse를 사용하는 방법 (0) | 2020.08.04 |
C #에서 익명 유형의 속성에 액세스하는 방법은 무엇입니까? (0) | 2020.08.04 |