编辑:我在 AndroidManifest 中的行是错误的。应该是
android:theme="@style/CustomTheme"
现在所有的文本颜色都改变了。不是按钮颜色,但我正在路上。谢谢您的帮助。
这一定是一个简单的答案,但我不断收到错误。据我所知,我正在关注这里的 Android 文档,但它不起作用。我已经阅读了很多关于这个问题的 stactoverflow 线程,并试图遵循看起来最好的线程。目标是在已经完成的项目中全局更改文本颜色。
这是在 res/values/styles.xml
<resources>
<style name="style_name" parent="@android:style/Theme.Black">
<item name="android:textColor">#00FF00</item>
</style>
</resources>
我在 AndoridMinafest.xml 中引用它
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/style_name"
>
我想做的是保持 Theme.Black 的基本风格,但改变文本颜色。
我究竟做错了什么?AndroidManifest 中的 android:theme="@android:style/style_name" 行会生成一个错误,然后每个类都会出错。