Nexus7 is a unique device with a somewhat strange trend structure.
For nexus 7
layout-large-hdpi
Here is a very good explanation (from Dianne Hackborn, an Android engineer at Google): Dianne Hackborn explains the unique resolution of the Nexus7
Note. . The application accepts images from these folders only if you have not received higher priority qualifiers. For example, if you specified a layout folder, such as layout-sw360dp, the application will only accept images from this folder, even if you provided separate layouts similar to what I said above. Because in android there is a priority order in which you have to give layouts.
Screen density
Commonly called dpi (dots per inch). Android groups all actual screen densities into four generalized densities: low (120), medium (160), high (240), and ultrahigh (320). A device such as the Galaxy Nexus has an "ultra-high" screen density (more specifically, the dpi value is set to 320). Nexus 7 uses "tvdpi" - that is, 213 dpi.
Density Independent Pixel
Commonly called dp. This is a virtual pixel element used when displaying content. A density-independent pixel is equivalent to one physical pixel on a screen with a resolution of 160 dpi. To calculate dp, use the following formula:
px = dp * (dpi / 160)
or equivalently:
dp = (px / dpi) * 160
The reason the Nexus 7 can display more content than the Galaxy Nexus, despite having similar resolutions: dpi for the Nexus 7 is lower than the Galaxy Nexus .
Galaxy Nexus (320 dpi, 720 pixels wide)
(720 / 320) * 160 = 360 dp
Nexus 7 (213 dpi, 800 pixels wide)
(800 / 213) * 160 = 600 dp
This means that when applications render on the Galaxy Nexus, the screen width is actually 360 dp (displayed using 720 pixels). While on Nexus 7, the screen width is 600 dp (displayed using 800 pixels).