を何が好きに自分のスタイルでcolorPrimaryDark属性を設定します。
<resources>
<!-- inherit from the material theme -->
<style name="AppTheme" parent="android:Theme.Material">
<!-- Main theme colors -->
<!-- your app branding color for the app bar -->
<item name="android:colorPrimary">@color/primary</item>
<!-- darker variant for the status bar and contextual app bars -->
<item name="android:colorPrimaryDark">@color/primary_dark</item>
<!-- theme UI controls like checkboxes and text fields -->
<item name="android:colorAccent">@color/accent</item>
</style>
</resources>
http://developer.android.com/training/material/theme.html
正しくあなたは、スタイルからそれを参照し、color.xmlであなたの色の値を宣言する必要があり、それを行うには。
getActionBar()ステータスバーの色を設定することができるこの方法を置き換える。setBackgroundDrawable(getResources()。getDrawable(R .drawable.hdr_bar)); –
このリンク[こちら](http://stackoverflow.com/questions/26496411/android-material-status-bar-color-wont-change)を参照してください。幸運とこれが役立つことを願っています。 – Dev
スプラッシュスクリーンをフルスクリーンアクティビティに設定してみませんか? –