At http://developer.android.com/guide/practices/screens_support.html I can read:
To create alternative bitmap drawables for different densities, you should follow the 3:4:6:8 scaling ratio between the four generalized densities. For example, if you have a bitmap drawable that's 48x48 pixels for medium-density screen (the size for a launcher icon), all the different sizes should be:
36x36 for low-density 48x48 for medium-density 72x72 for high-density 96x96 for extra high-density
I guess all the units above are in pixels?
When I am creating an image in photoshop, I should not only specify the dimension (like 36x36 pixels), I should also specify a resolution. How do I know which resolution I should specify in these cases.
If I want to create a full screen drawable, which dimensions and resolutions should I use for the diferent densities?
I have a tablet and I have tested that it picks resources from the mdpi folder. I guess the best strategy is to create drawable in this directory and adjust there size so it looks nice. I can from there use the scaling 3:4:6:8 o create the other resources?
ok, I have found the answers here: How do I convert ppi into dpi for Android images?
yes
The resolution in ps is only for printing
See link above
to be tested...