要为整个应用程序在 styles.xml 中设置背景颜色和文本颜色,请确保您没有在布局文件中填充整个布局的根元素之一上设置 android:background 属性。
android:background="#0000FF"
对于您的颜色,在 value 文件夹中创建一个 color.xml 文件。
<resources>
<color name="text_color_green">#00FF00</color>
<color name="background_color_red">#4BFF0000</color>
</resources>
要设置其他文本颜色然后是主要文本颜色,您必须为 style.xml 文件中的每个小部件创建一些自定义样式。
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowBackground">@color/background_color_red</item>
<item name="android:textColor">@color/text_color_green</item>
<item name="android:windowFullscreen">true</item>
<!-- Custom style on widgets -->
<item name="android:editTextStyle">@style/AppTheme_EditTextStyle</item>
<item name="android:buttonStyle">@style/AppTheme_ButtonStyle</item>
</style>
<!-- Custom Style EditText Widget -->
<style name="AppTheme_EditTextStyle" parent="@android:style/Widget.EditText">
<item name="android:textColorHint">@color/text_color_green</item>
<item name="android:textColor">@color/text_color_green</item>
</style>
<!-- Custom Style Button Widget -->
<style name="AppTheme_ButtonStyle" parent="@android:style/Widget.Button">
<item name="android:textColor">@color/text_color_green</item>
</style>
为应用程序设置自定义主题
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- App Activities here-->
</application>