1

One of our user complaint that app does not look good on New Nexus 7(1200*1900 with 323PPI resolution). I am not getting which layout folder I have to create to give support this new device.

Ankit
  • 1,916
  • 2
  • 20
  • 33

4 Answers4

3

You should use layout-sw600dp because large might include 5 inch devices like Dell Streak also - From the Android guidelines.

The new Nexus 7 uses xhdpi resources but for app icon, it uses xxhdpi. That's what I've observed in my app on my Nexus 7.

Rahul Sainani
  • 3,437
  • 1
  • 34
  • 48
1

Should fall into xhdpi bucket.

ldpi : ~120dpi
mdpi : ~160dpi
hdpi : ~240dpi
xhdpi : ~320dpi
josephus
  • 8,284
  • 1
  • 37
  • 57
0

The new Nexus 7 is of 320dpi. So it falls on the large xhdpi bucket.
So you can specify layout as layout-large-xhdpi.

Renjith
  • 5,783
  • 9
  • 31
  • 42
0

Nexus 7 picks the resources from tvdpi folder . Please try that like layout-large-tvdpi, drawable-large-tvdpi.

Sorry , I was talking about old Nexus 7 , new Nexus 7 picks up from large-xhdpi.

Renjith
  • 5,783
  • 9
  • 31
  • 42
Ritaban
  • 763
  • 4
  • 8