Skip to content

Commit

Permalink
Fix status bar font color when API Level >= 23
Browse files Browse the repository at this point in the history
close #28
  • Loading branch information
mzlogin committed Nov 16, 2017
1 parent 94fddb6 commit 442f14d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app/src/main/res/values-v23/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="AppTheme" parent="Theme.AppCompat.Light">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowLightStatusBar">true</item>
</style>
</resources>

0 comments on commit 442f14d

Please sign in to comment.