[android-developers] Choosing resolution over density for drawables

2010-07-04 Thread Stephen Lebed
I'm looking for a way to tell Android to use a specific drawable folder for specific device resolutions. I have graphics designed for 320x480 displays and 480x800 displays. Android wants to automatically pick the best graphics based on density. Is there a way to work around that? If the device

Re: [android-developers] Choosing resolution over density for drawables

2010-07-04 Thread Kostya Vasilyev
Stephen, There is a whole bunch of qualifiers for resource folder names, described here: http://developer.android.com/guide/topics/resources/providing-resources.html#AlternativeResources You can do things like res/drawable-large, which should match both 480x800 and 480x854. -- Kostya