如何刪除在phonegap構建中應用程序開始時顯示的標題欄? 我試過全屏顯示在Phonegap remove title bar at start和它的工作,該應用程序是全屏,但標題欄stil顯示在應用程序的開始一秒左右。 當我在本地構建時,我可以使用命令android:theme =「@ android:style/Theme.NoTitleBar」刪除標題欄表單manifest.xml>刪除標題欄Phonegap
如何從phonegap構建中完全刪除標題欄?
我解決它通過添加這些行到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>
請!有人可以分享他的想法嗎?我相信每個人都有這個問題,我在網上搜索了幾個小時沒有成功......這個問題解決了嗎?或者一般? –
我也面臨同樣的問題!有什麼辦法解決這個問題? – 2014-02-20 10:29:21
我加 [缺口:配置文件中的平臺= 「機器人」 父= 「/清單」] \t [應用軟件Android:主題= 「@安卓風格/ Theme.NoTitleBar」] [活動安卓主題=」 @android:款式/ Theme.NoTitleBar。全屏「] [/ activity] \t [/ application] \t [/ gap:config-file] 我的config.xml - > widget部分,但它不工作,和以前一樣!請大家可以分享一個想法? –