I updated my app's resources the last time when higher density devices came up. Started drawing my icons in higher resolution and supplied them through the use of the res/drawable-hdpi directory structure.
So far, so good.
Now I wanted to do some changes to adopt for Android tablets. Have updated a few layouts and then I slowly realized why all my icons looked somewhat strange to me on that nice display: the "normal" 10 inch tablets are not classified as hdpi, but mdpi thus all my "old" resources from former times re-appeared!
I wonder: how am I supposed to supply images for a tablet? Again, a new directory, something like drawable-large or xlarge? Not even would I have to duplicate all my identical resources, which is stupid, I also wonder why I should classify images for mdpi/hdpi on the one hand and for screen size on the other...
What is the preferred way that Android developers should go?
Thanks!