0
如何刪除Cordova與MeteorJS集成的默認閃屏?我似乎無法在Meteor Docs上找到任何有關它的信息。如何刪除流星上的閃屏
如何刪除Cordova與MeteorJS集成的默認閃屏?我似乎無法在Meteor Docs上找到任何有關它的信息。如何刪除流星上的閃屏
我想我找到了怎麼做。
在移動config.js:
App.setPreference('SplashScreen', 'CDVSplashScreen')
我不知道如何刪除閃屏但對於替代默認的啓動畫面,你需要設置是這樣的:
App.launchScreens({
'iphone': path,
'iphone_2x': path,
'iphone5': path,
'iphone6': path,
'iphone6p_portrait': path,
'iphone6p_landscape': path,
'ipad_portrait': path,
'ipad_portrait_2x': path,
'ipad_landscape': path,
'ipad_landscape_2x': path,
'android_ldpi_portrait': path,
'android_mdpi_portrait': path,
'android_hdpi_portrait': path,
'android_xhdpi_portrait': path
})
在項目的根
移動config.js以獲得更多信息可以檢查:https://github.com/phonegap/phonegap/wiki/App-Splash-Screen-Sizes
謝謝,但是這並沒有真正回答我的問題。 –