1
私のアンドロイドウェアのアプリでは、私は白とテキストの色を黒にデフォルトの黒の背景を変更する必要があります。これらの色私は新しいレイアウトファイルを作成するたびに設定されていないために、私は、背景とテキストの色を定義するテーマを作成し、メインlayoutfile白い背景と黒のテキストの色はアンドロイドのアプリ
にレイアウトファイルを適用:
<?xml version="1.0" encoding="utf-8"?>
<android.support.wearable.view.WatchViewStub
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/watch_view_stub"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:roundLayout="@layout/round_activity_wear"
app:rectLayout="@layout/rect_activity_wear"
tools:context="com.example.wear.WearActivity"
tools:deviceIds="wear"
style="@style/AppTheme">
</android.support.wearable.view.WatchViewStub>
を
スタイルファイル:私はそれを添付した後
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light">
<!-- Customize your theme here. -->
<item name="android:background">#FFFFFF</item>
<item name="android:text">#000000</item>
<item name="android:color">#000000</item>
<item name="android:colorForeground">#000000</item>
<item name="android:textColor">#000000</item>
<item name="android:textColorPrimary">#000000</item>
<item name="android:textColorSecondary">#000000</item>
<item name="android:textAppearance">@style/WearTextAppearance</item>
</style>
<style name="WearTextAppearance" parent="@android:style/TextAppearance.Medium">
<item name="android:color">#000000</item>
<item name="android:colorForeground">#000000</item>
</style>
</resources>
は、背景が白に変更しましたが、テキストの色は、白色のまま。どうしたんだ?なぜ私の期待どおりに私のテキストの色は黒ではない?
Javaコードで 'setTextColor'を確認してください –