Search This Blog

11 May 2010

Large screen support

I tried to deploy our progress bar demo to a large screen emulator session and found that my app was shrunken.  Thanks to Scott for pointing out the solution.

Add this to your AndroidManifest.xml and it works fine :)

          <supports-screens android:smallScreens="true"
                  android:normalScreens="true"
                  android:largeScreens="true"
                  android:anyDensity="true" />

No comments:

Post a Comment