I am testing my app on two devices and I am currently trying to understand how the drawables folders work:
- Galaxy S2
- Nexus 7
The logos are both being picked up from the hdpi
folder eg: res/drawable-hdpi
and I believe this is because they have the following densities.
- Galaxy S2 - 219
- Nexus 7 - 216
Which relate to Google's density range and are indeed hdpi
:
If you look at the two screenshots for my app homescreen logo:
Galaxy S2
Nexus 7
You can see the logo on the Nexus 7 is a bit blurry, how can I provide a different asset for a 7" tablet if it comes from the same resource drawables folder? Do I need to set some size on the logo somewhere?
I have also read that the Nexus 7 is also categorized as tvdpi
but I'm not sure I should be creating any folder for that or not.