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?
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?
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>