Unable to make full-screen app for Galaxy Tab (Android device)

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" />
+3
source share
3 answers

I think what you are using is using -sdk android: minSdkVersion = "3" in your manifest file.

if you want to show it as a full screen on the Galaxy tab. Use minSdkVersion more than 3 its better to use

Let me know if you have any problems.

Thank.

+3

sdk 11 , 11.

<uses-sdk minSdkVersion="6" android:targetSdkVersion="11" />
+1

Add this to your application element in AndroidManifest.xml

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
0
source

Source: https://habr.com/ru/post/1794616/


All Articles