Android Screenshot Sizes: Pixel, Galaxy, and Why dp Matters
Android screenshot resolutions for common phones, what density-independent pixels actually are, and why 360dp keeps showing up in Android design work.
·6 min read
An Android screenshot is saved at whatever resolution the display is currently running. For most modern phones that is 1080 × 2400 or thereabouts. The catch, and the reason Android is messier than iPhone here, is that on some phones the resolution is a setting you can change — so two identical handsets can produce different screenshot sizes.
Common Android screenshot resolutions
- 1080 × 2400 — the most common size on current 6.1" to 6.5" phones, including recent Pixels
- 1080 × 2340 — very common on Samsung Galaxy S-series handsets running at their default setting
- 1440 × 3120 — quad-HD flagships, including Pixel Pro models and Galaxy Ultra handsets set to maximum resolution
- 720 × 1600 — budget devices, and flagships deliberately set to a lower resolution to save battery
The setting most people do not know about
Samsung and some other manufacturers let you choose the display resolution in settings — typically between HD+, FHD+, and QHD+. Phones frequently ship set to FHD+ rather than their maximum, because it saves meaningful battery life and most people cannot see the difference.
The practical consequence: a Galaxy Ultra capable of 1440 × 3120 will happily produce 1080 × 2340 screenshots out of the box. If you are collecting screenshots from testers and the dimensions do not match the spec sheet, this is almost always why. It is not a bug, and nothing is wrong with the device.
What is a dp, and why does 360 keep appearing?
Android lays out interfaces in density-independent pixels, abbreviated dp. One dp equals one physical pixel on a 160dpi screen — the original baseline — and scales up from there. The point is that a 48dp button is the same physical size on your thumb regardless of how sharp the display is.
Each device falls into a density bucket that determines the multiplier:
| Bucket | Multiplier | Typical hardware |
|---|---|---|
| mdpi | 1× | The 160dpi baseline. 1dp = 1px. |
| hdpi | 1.5× | Older mid-range hardware. |
| xhdpi | 2× | Budget phones and tablets. |
| xxhdpi | 3× | Most 1080p-class phones. |
| xxxhdpi | 4× | Quad-HD flagships. |
This is why 360dp is everywhere in Android design work. A 1080-pixel-wide phone in the xxhdpi bucket is 1080 ÷ 3 = 360dp across. That number has been the practical reference width for years, which is why Android layout guidance, design templates, and breakpoint advice all orbit around it.
How this differs from iPhone
Conceptually the two systems solve the same problem: separate the layout grid from the physical pixels. iOS calls its unit a point and ships a small, tightly controlled set of screen sizes. Android calls its unit a dp and runs on an enormous range of hardware, with resolution sometimes user-adjustable on top.
The result is that "the iPhone screenshot size" is a table you can memorise, while "the Android screenshot size" is a distribution. If you want the iOS equivalent of this article, it is iPhone screenshot sizes for every model.
How to check your own device
Take a screenshot, open it in your gallery app, and look at the details or information panel. It reports the pixel dimensions directly, which is more reliable than looking up the spec sheet — because of the resolution setting above, the spec sheet may not describe what your phone is actually doing right now.
Which size should you design for?
For a mockup that needs to look correct to the widest audience, 1080 × 2400 is the sensible default. It is the most common current resolution, it is high enough to stay sharp in a presentation or on a retina display, and it is close enough in aspect ratio to the alternatives that nothing looks distorted.
Reach for 1440 × 3120 when the image will be shown large or when you are specifically depicting a flagship. Avoid designing at 720 × 1600 and scaling up — starting small and enlarging produces soft edges that no amount of correct proportions will fix.
Related reading
- iPhone Screenshot Sizes for Every ModelThe exact pixel dimensions iOS writes when you take a screenshot, model by model, plus how points and pixels relate and why the numbers are what they are.
- How to Make Phone Mockups Without Figma or PhotoshopA practical walkthrough for putting a photo or design inside a realistic phone screen when you don't have a design tool, a license, or twenty minutes to spare.