Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Galaxy Note II - values-xhdpi or values-large?

In the case I have both values-xhdpi and values-large resources with which one will the galaxy note II work with? I don't have a device for testing and the emulator only takes me so far.

Any idea?

like image 728
Aviran Avatar asked Jul 09 '13 11:07

Aviran


1 Answers

According to the precedence table, large comes before xhdpi, therefore values from values-large will be used on the actual device.

An important note here, this happens if the device actually declares itself as having a large screen. However, devices are not very consistent about it, so I would consider adding resources to a folder like sw600dp because it is much more reliable. For more details read the link above and also check out how to use them in best practices.

like image 130
Malcolm Avatar answered Oct 18 '22 05:10

Malcolm