0

我的AndroidManifest.xml中有以下内容

<application
            android:icon="@drawable/icon"
            android:label="@string/app_name"
            android:name=".MonamiqApplication"
            android:theme="@style/monamiq_theme">

这可行,但是我想为此使用一个属性,这对于应用程序图标是否可行?我使用自定义主题,其中我定义了app_icon

我想用

<application
            android:icon="?app_icon"
            android:label="@string/app_name"
            android:name=".MonamiqApplication"
            android:theme="@style/monamiq_theme">

属性.xml

<?xml version="1.0" encoding="utf-8"?>
<resources> 
    <attr name="app_icon" format="reference" />
</resources>

monamiq_theme.xml

<resources>
    <style name="monamiq_theme" parent="android:Theme.Holo.Light" >
        <item name="app_icon">@drawable/icon</item>
    </style>

4

1 回答 1

0

将新图标放入drawable文件夹,清理项目并将它们与@drawable/your_image一起使用。只需替换默认值即可。

于 2013-08-19T12:46:06.353 回答