Mobile & Tablet Resolutions with Aspect Ratios Reference Guide

GameDev Dustin
2 min readSep 22, 2022

This article will serve as a reference for recent mobile and tablet device resolutions and aspect ratios

If Screen Height > Screen Width: Aspect Ratio = Screen Height / Screen Width
or
If Screen Width > Screen Height: Aspect Ratio = Screen Width / Screen Height

Determining Screen Aspect Ratio
We want to determine the one to [insert ratio here] based on a device’s screen resolution.

Generally, we want a value > 1 so use a formula that takes into account whether the height or the width is largest.

After that it is a simple division problem as shown above.

I’ve researched out most of the popular devices of the last two to three years.

Enjoy!

Devices Ordered by Type than Manufacturer

Devices Ordered by Screen Height (Largest to Smallest)

Devices Ordered by Screen Width (Largest to Smallest)

Devices Ordered by Aspect Ratio (Largest to Smallest)

Devices Ordered by Aspect Ratio (Smallest to Largest)

Devices Ordered by Manufacturer

I hope you found this article helpful, see you in the next one!

--

--