アクションバーテキスト、ハンバーガーアイコン、アクションバーのオーバーフローアイコンの色を変更する必要があります。私は、次のことを試してみました: -アクションバーの色のみを変更するには?
<!-- Title text -->
<item name="android:textColorPrimary">@android:color/white</item>
<!-- Title color in AppCompat.Light -->
<item name="android:textColorPrimaryInverse">@android:color/white</item>
<!-- Menu text-->
<item name="actionMenuTextColor">@android:color/white</item>
<!-- Overflow -->
<item name="android:textColorSecondary">@android:color/white</item>
<!-- This will change drawer icon -->
<item name="android:popupBackground">@android:color/white</item>
しかし、オーバーレイポップアップのような他の多くの場所、上記のコードを強制的に色の変化、エディットテキストテキストカラー、一人で所望の場所に色を変更する方法はありますか?
Spannable text = new SpannableString(actionBar.getTitle());
text.setSpan(new ForegroundColorSpan(Color.BLUE), 0, text.length(), Spannable.SPAN_INCLUSIVE_INCLUSIVE);
actionBar.setTitle(text);
ちょうどこのようなあなたのアクションバーでカスタムビューを2.Setting:
http://stackoverflow.com/questions/33698122/android-change-actionbar-title-text-colorこれはあなたを助けるかもしれません。 –