I'm trying to get my app Android app to support multiple screen sizes. I want it to only support phones(From 3 inches to 5.7), not Tablets.
I have two test phones - Samsung Galaxy S2 and Nexus 4.
I'm trying to 'play' with the different folders(LDPI,MDPI,HDPI and XHDPI) but I can't get a consistent result.
I don't want to use different layout for each screen size, only to resize the resources. Which folders should I user? If I use the basic four DPI folders(resized resources in each folder) it doesn't work well, and both phones uses the same resource folder.
I've tried playing with screen sizes and DPI folders -
drawable-large-ldpi
drawable-large-mdpi
drawable-large-hdpi
drawable-large-xhdpi
But still no luck.
Any tips on this one? I've read the Supporting Multiple Screens page
Thanks!