Android ステータスバーアイコンの色 質問する

Android ステータスバーアイコンの色 質問する

ステータスバーを変更できるかどうか疑問に思っていましたアイコン色 (ないステータスバーの色colorPrimaryDark)ここに画像の説明を入力してくださいこのステータスバーに次のような色を付けたいとします:
<item name="colorPrimaryDark">@android:color/white</item>

アイコンが黒くなるのは可能ですか?

ありがとう。

編集:

New in the M developer preview: windowLightStatusBar. Flipping this on in your theme tells the system to use a dark foreground, useful for lighter colored status bars. Note the M preview seems to have a bug where notification icons remain white, while system status icons correctly change to semitransparent black.

from: Roman Nurik Google+ post ここに画像の説明を入力してください

ベストアンサー1

Yes it's possible to change it to gray (no custom colors) but this only works from API 23 and above you only need to add this in your values-v23/styles.xml

<item name="android:windowLightStatusBar">true</item>

ここに画像の説明を入力してください

おすすめ記事