我在styles.xml中定义了两个主题 AppTheme1和AppTheme2:
<resources>
<!-- Base application theme. -->
<style name="AppTheme1" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme2" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">#00ff00</item>
<item name="colorPrimaryDark">#ff00ff</item>
<item name="colorAccent">#0000ff</item>
</style>
</resources>
当我在AndroidManifest.xml中更改应用程序标签中的主题时 我的应用主题没有任何变化,应用只使用colors.xml而不是styles.xml。 例如我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.maneshtsoft.blackdictionary">
<application
android:allowBackup="true"
android:icon="@mipmap/favicondark"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme2">
<!-- OR AppTheme1 does not matter -->
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
只是说我使用工具栏和AppCompactActivity可能有助于回答。 感谢。
答案 0 :(得分:1)
问题可能是InstantRun的缓存 你有没有试过&#34;清洁&amp;重新运行&#34 ;?如果您使用AndroidStudio 2.1或更高版本,请选择菜单 - &gt;运行 - &gt;清洁&amp;重新运行。