i set following layout configuration for my app
small,normal,large,xlarge screen layouts are fine for android 1.5 to 3.1. In android 3.2 all screens i.e
only takes layout-sw320dp . Is there any additional configuration required for android 3.2
note: i'm using eclipse with android plugin
Use “wrap_content” and “match_parent” To ensure that your layout is flexible and adapts to different screen sizes, you should use "wrap_content" and "match_parent" for the width and height of some view components.
With the layout management changes introduced in Android 3.2 (See http://developer.android.com/sdk/android-3.2.html#api & http://android-developers.blogspot.com/2011/07/new-tools-for-managing-screen-sizes.html) the most specific layout should be selected for the device being used. In this case layout-sw600dp should be selected for a 720 x 960 device.
For Android 3.2, you also need to specify which screen sizes your app supports in the manifest file using the element. http://developer.android.com/guide/practices/screens_support.html#DeclaringScreenSizeSupport http://developer.android.com/guide/topics/manifest/supports-screens-element.html
This is likely causing your issue.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With