我已在AndroidManifest標籤上設置了應用屬性android:圖標,但它不工作。我在文件夾drawable-hdpi,drawable-ldpi,drawable-mdpi上添加了一個名爲icon.png的圖片,但它堅持顯示默認的android圖標。設置啓動圖標,但只顯示android默認
我在做什麼錯?
感謝
我AndroidManifest就像這樣:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="..." android:versionCode="1" android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/icon"
android:label="My App Name"
android:theme="@style/notitle"
android:persistent="true" >
我還添加了一個外部libray,它的AndroidManifest是:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="....lib" android:versionCode="1" android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon">
</application>
</manifest>
你有沒有嘗試從設備上卸載應用程序,並清理重建? – sandrstar
是的,卸載,更改圖標的名稱。它不會改變 –