Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The Google Nexus 10 comes out shortly, and is the first device to use xxhdpi resources. It sports a display density of about 300 DPI (according to the Nexus 10 website and this calculator).

However, when I go to the Android documentation, it states:

  • ldpi : ~120dpi
  • mdpi : ~160dpi
  • hdpi : ~240dpi
  • xhdpi : ~320dpi
  • xxhdpi is not specified.

How come the Nexus 10's 300 DPI screen is xxhdpi instead of xhdpi, and what should be the approximate DPI of xxhdpi? Should we even worry about having new resources (aside from icons) for xxhdpi at this point, or should we just let the OS scale up xhdpi resources?

share|improve this question

4 Answers

up vote 46 down vote accepted

According to the post linked in the G+ resource:

The gorgeous screen on the Nexus 10 falls into the XHDPI density bucket. On tablets, Launcher uses icons from one density bucket up [0] to render them slightly larger. To ensure that your launcher icon (arguably your apps most important asset) is crisp you need to add a 144*144px icon in the drawable-xxhdpi or drawable-480dpi folder.

So it looks like the xxhdpi is set for 480dpi. According to that, tablets use the assets from one dpi bucket higher than the one they're in for the launcher. The Nexus 10 being in bucket xhdpi will pull the launcher icon from the xxhdpi.

Source

Also, was not aware that tablets take resources from the asset bucket above their level. Noted.

share|improve this answer
3  
That seems conflicting to me. Roman Nurik's post says "Support for XXHDPI for Nexus 10 launcher icons"... the post you quoted says that the Nexus 10 is "XHDPI", but also says that "[T]o ensure that [it] is crisp you need to [use] the drawable-xxhdpi ... folder". Edit: Interesting, one of the comments (from Roman) says, "+Benjamin Weiss remember, the display itself isn't xxhdpi, it's just where the launcher/system will be looking for one-bucket-up icons." You may want to add this to your post. – Eric Nov 4 '12 at 3:48
1  
I kind of sort of did. They say that the tablets take resources from the assets of the higher dpi than the one they're in. I'll put that more clearly in the answer. – DeeV Nov 4 '12 at 4:38

The DPI of the screen of the Nexus 10 is ±300, which is in the unofficial xhdpi range of 280‑400.

Usually, devices use resources designed for their density. But there are exceptions, and exceptions might be added in the future. The nexus 10 uses xxhdpi resources when it comes to launcher icons.

The standard quantised DPI for xxhdpi is 480 (which means screens with a DPI somewhere in the range of 400‑560 are probably xxhdpi).

share|improve this answer
1  
Why would you add a post two months later that doesn't include more information than the accepted answer? – Sky Kelsey Apr 10 at 18:40
Look sky, You down vote my answer for same reason. Thing has been change from the time when question had asked. So posting a new answer is not a harm and its not a reason to down vote at all !! – Sameer Apr 11 at 4:31

xxhdpi was not specified before but now new devices S4, HTC one are surely comes inside xxhdpi .These device dpi are around 440. I do not know exact limit for xxhdpi See how to develop android application for xxhdpi device Samsung S4 I know this is late answer but as thing had change since the question asked

Note Google Nexus 10 need to add a 144*144px icon in the drawable-xxhdpi or drawable-480dpi folder.

share|improve this answer
@SkyKelsey which comment? – Sameer Apr 11 at 4:29

The newer android phones in the market like HTC one, Xperia Z etc have resolutions in the >480dpi range, putting them in the new xxhdpi class as well. The new assets might be useful for them too.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.