アプリケーション全体の style.xml で背景色とテキスト色を設定するには、レイアウト全体を埋めるレイアウト ファイルのルート要素の 1 つに 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>