Reputation: 25
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
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
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