Kshitij Kapoor
Kshitij Kapoor

Reputation: 25

How to support smaller screens on android, even after using support screens?

I need my app to work on screens of all sizes. It works perfectly on my SII, but the complete app is not showing on the galaxy Y. I am using the support screen code in manifest. I can't find whats wrong.

Here's the code in manifest:

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

<supports-screens android:resizeable="true"
              android:smallScreens="true" 
              android:normalScreens="true" 
              android:largeScreens="true"

              android:anyDensity="true"
              />

Upvotes: 0

Views: 141

Answers (2)

Andy Harris
Andy Harris

Reputation: 938

Declaring screen sizes is not all that is needed. You also need to provide layouts and drawables for each screen size. See How to Support Multiple Screens.

Upvotes: 1

Sparky
Sparky

Reputation: 8477

I have never needed to use the <supports-screens> tag. Just leave it out, and you automatically support every screen size.

Upvotes: 0

Related Questions