When testing my application at WXGA720 resolution on the Android Emulator running 4.0.3 Ice Cream Sandwich, my app takes the layout assets from the layout-normal-land-854x480 folder in landscape view and the layout-port-480x320 folder for portrait view. I would like to be able to specifically target this resolution so my app displays properly on the new phones. How do I do this? I have tried the following...

layout-normal-land-xhdpi
layout-normal-port-xhdpi
layout-normal-land-xlarge
layout-normal-land-large
layout-normal-land-1280x720
layout-normal-port-1280x720, etc...

...and it still takes the assets from the wrong folders detailed above.

My app is targeting Android 2.1 (which I assume is still the standard target these days), so I can't as far as I know use the new layout qualifiers. Is this a bug? Has anyone had this same issue and found a workaround?

I have the following folder configuration, and all of the other AVDs display as expected:

layout
layout-land
layout-normal-land-480x320
layout-normal-land-854x480
layout-port-480x320
layout-port-800x480

link|improve this question
feedback

3 Answers

My development environment is not completely messed up, it's an issue with Ice Cream Sandwich. Pre-ICS phones will use the exact layout folders, while ICS phones will use the closest folder below the actual dimensions. To better explain this, consider the following:

ICS used the folder 'layout-port-480x320' to render the portrait view for my activity, because at the time it was the closest folder to the correct dimensions. When I created a new folder, 'layout-port-800x481', it used that one. I did not want to put my Nexus-targeted layout in a folder with actual dimensions because then it would screw up the pre-ICS device layouts. The reason layout-land-1280x720 was not working is because the actual visible dimensions of the screen are smaller than that. ICS on the Nexus uses some of it's visible display area for the new soft keys used on the newer devices.

In short, this may not be the cleanest solution, but it is a workaround that will help in a bind trying to target these new devices.

link|improve this answer
feedback

When testing my application at WGXA720 resolution on the Android Emulator running 4.0.3 Ice Cream Sandwich, my app takes the layout assets from the layout-normal-land-854x480 folder in landscape view and the layout-port-480x320 folder for portrait view.

If I had to guess, you do not have a valid <supports-screens> element (or possibly no android:minSdkVersion) in your manifest, and so you are being thrown into a compatibility mode.

Also, please don't use suffixes like -480x320 and -854x480. These were removed from the documentation for a reason. Whatever problem you think you are solving with them can be better solved some other way.

My app is targeting Android 2.1 (which I assume is still the standard target these days), so I can't as far as I know use the new layout qualifiers.

You can set your build target to a higher level and use the new layout qualifiers. However, older devices will ignore them, so you will still need to use -normal and -land and kin for them, in parallel with any resource sets with the new qualifiers. You can create resource aliases to minimize code duplication.

link|improve this answer
I appreciate the help, but I'm still completely stuck after working on this for the past several hours. I removed the pixel-specific suffixes and tried replacing them with just 'large' or 'hdpi', etc., and every AVD used the 'mdpi' folder, no matter what the screen density or resolution really was. Per the docs: "These minimum screen sizes were not as well defined prior to Android 3.0, so you may encounter some devices that are mis-classified between normal and large." Hence, the only way for me to define layouts correctly is to use the pixel-specific suffixes. – Matt W Jan 25 at 20:15
I also tried adding the <supports-screens> element to the manifest file, changing the build target to 13, and using the new layout qualifiers (sw720dp) - It ignores this and IT STILL WANTS TO USE THE SAME FOLDERS. The only way I've been able to effectively target this is to do it programatically, by obtaining the device width and changing the layout parameters via code - something I'm trying to avoid here. – Matt W Jan 25 at 20:19
@MattW: Your development environment must be completely messed up. Stuff like -large and -hdpi work just fine for tens of thousands of other developers. I have no idea how to help you further. – CommonsWare Jan 25 at 22:46
feedback

I was having a similar problem displaying my layouts properly but I was using the HTC Rezound that has 1280 by 720 resolution. It uses Android version 2.3.4. My screens were only showing on the upper portion of the display and the bottom third was black. Everything was displaying properly using lower resolution phones.

I went through the exercise of making new layout directories ( layout-xhdpi, layout-large, layout-1280x720, layout-1200x700, etc) and modifying my layout files to match the larger resolution, but each attempt failed and the app always showed in the upper part of the screen only. I had read the docs from http://developer.android.com/guide/practices/screens_support.html and did not find anything that solved the problem. I finally fixed it, and the solution had nothing whatsoever to with adding new layout directories set up for higher resolutions! The solution was all about the "uses-sdk" statement in the AndroidManifest.xml file. My original manifest contained the statement:

<uses-sdk minSdkVersion="8"/>

With only the minimum sdk version specified, the graphics would not display properly on the Rezound. However, after changing only one line in the AndroidManifest.xml (and making no other changes) the phone displayed all the screens properly:

<uses-sdk android:targetSdkVersion="9" minSdkVersion="8" />

Why did this fix it but not the documented methods? I don't know! I am finding many hidden connections in Android that seem to defy a logical explanation. Can someone explain to me why changing the uses-sdk statement is critical to displaying on a higher resolution display?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.