Can anyone tell me, even though I set the below listed tags in my AndroidManifest.xml file, why I can't make my application run as full screen on the "Galaxy Tab" (Android device)? I am developing my current application with 2.3 Api level 9.
Here is the tag I have defined in my 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" />