這一節演示如何配置應用程式的圖示和可選初始螢幕上的各種平台上,兩者在科爾多瓦 cli (描述在命令列介面) 中工作時或使用特定於平台 sdk 工具 (平台指南中詳細說明)。
當工作在 cli 中你可以定義應用程式圖示通過元素 (
config.xml
)。如果你不指定乙個圖示然後使用 apache 科爾多瓦徽標。
src="res/ios/icon.png"platform="ios"width="57"height="57"density="mdpi"/>
src: (必填) 指定的影像檔,與您的專案目錄的位置
平台: (可選) 目標平台
寬度: (可選) 圖示的寬度 (以圖元為單位)
高度: (可選) 圖示的高度 (以圖元為單位)
密度: (可選) android 具體,指定圖示密度
下面的配置可以用於定義單個預設圖示,將用於所有平台。
src="res/icon.png"/>
為每個平台還可以定義設定以適合不同的螢幕解析度圖元完美圖示。
亞馬遜火 os
name="amazon-fireos">
src="res/android/ldpi.png"density="ldpi"/>
src="res/android/mdpi.png"density="mdpi"/>
src="res/android/hdpi.png"density="hdpi"/>
src="res/android/xhdpi.png"density="xhdpi"/>
android 系統
name="android">
src="res/android/ldpi.png"density="ldpi"/>
src="res/android/mdpi.png"density="mdpi"/>
src="res/android/hdpi.png"density="hdpi"/>
src="res/android/xhdpi.png"density="xhdpi"/>
blackberry10
name="blackberry10">
src="res/bb10/icon-86.png"/>
src="res/bb10/icon-150.png"/>
請參閱針對多個大小和地區設定黑莓的文件。
火狐瀏覽器作業系統
name="firefoxos">
src="res/ff/logo.png"width="60"height="60"/>
ios
name="ios">
src="res/ios/icon-60.png"width="60"height="60"/>
src="res/ios/[email protected]"width="120"height="120"/>
src="res/ios/icon-76.png"width="76"height="76"/>
src="res/ios/[email protected]"width="152"height="152"/>
src="res/ios/icon-40.png"width="40"height="40"/>
src="res/ios/[email protected]"width="80"height="80"/>
src="res/ios/icon.png"width="57"height="57"/>
src="res/ios/[email protected]"width="114"height="114"/>
src="res/ios/icon-72.png"width="72"height="72"/>
src="res/ios/[email protected]"width="144"height="144"/>
src="res/ios/icon-small.png"width="29"height="29"/>
src="res/ios/[email protected]"width="58"height="58"/>
src="res/ios/icon-50.png"width="50"height="50"/>
src="res/ios/[email protected]"width="100"height
linux qt啟動畫面 QT 新增啟動畫面
許多應用程式在啟動時顯示乙個畫面。在程式啟動很慢時,程式設計師用這種方法可以讓啟動時間感覺不那麼長,還有用這個畫面滿足市場的一些要求。給qt應用程式加乙個啟動畫面很簡單,需要使用的類是qsplashscreen。下面的乙個程式的main 函式使用qsplashscreen顯示乙個啟動畫面,同時顯示載...
WINCE啟動畫面
這段時間在調wince的啟動畫面程式,按著網上說的,先自己製作一幅位圖,然後用工具bmp2t.exe轉換成陣列,把陣列拷到 smdk2440 kernel hal samsunga 70.c中 我用的是三星2440的板子,7寸的屏 最後在pb中sysgen,生成映象檔案,燒到板子上。結果程式可以執行...
Qt 啟動畫面
縱所周之,當乙個程式的啟動比較耗時的時候,為了不讓使用者枯燥的等待或者是誤以為程式執行異常了,所以我們都會在啟動比較耗時的程式中加上啟動介面 例如office軟體等等。在qt中實現啟動介面,主要就是使用qsplashscreen類。該模擬較簡單,這裡就不對類本身做過多說明了,主要是以乙個例子來說明他...