Initialization App Phonegap TitleBar

-1

Because when I do buid my app and run it on my cell phone it appears at the boot of the same a gray bar with the name of the application and the black background? Anyone know how to get this out?

    
asked by anonymous 13.11.2015 / 04:59

1 answer

0

I found the solution and I know that many will be happy for this solution. Add this line below within the config.xml widget tag:

xmlns:android="http://schemas.android.com/apk/res/android" 

And now add the code below into your config.xml :

<gap:config-file platform="android" parent="/manifest">

       <supports-screens 
              android:xlargeScreens="false" 
              android:largeScreens="false" 
              android:smallScreens="false" />
        <application android:theme="@android:style/Theme.NoTitleBar" >
            <activity android:theme="@android:style/Theme.NoTitleBar.Fullscreen" ></activity>
        </application>
</gap:config-file>
    
17.11.2015 / 18:30