gpt4 book ai didi

android - 更改 list 中的主题不起作用

转载 作者:行者123 更新时间:2023-11-30 01:11:29 25 4
gpt4 key购买 nike

我在 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。例如我的 list 文件:

<?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 可能有助于回答。谢谢。

最佳答案

可能是InstantRun缓存的问题。
您是否尝试过“清理并重新运行”?如果您使用 AndroidStudio 2.1 或更高版本,请选择菜单 -> 运行 -> 清理并重新运行。

关于android - 更改 list 中的主题不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38394503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com