Can someone tell me, although I have installed the tags below in my AndroidManifest.xml file, why can't I get my application to work as a full screen on the โGalaxy Tabโ (Android device)? I am developing my current application with Api level 2.3.
Here is the tag that I defined in the Manifest.xml file:
<supports-screens android:smallScreens="true"
android:largeScreens="true" android:xlargeScreens="true"
android:normalScreens="true" android:anyDensity="true"/>
<uses-sdk android:minSdkVersion="4"
android:targetSdkVersion="9" android:maxSdkVersion="9" />
source
share