Last active
August 29, 2015 14:03
-
-
Save MikeChongCan/9b3bb1b3d7a1698a21ad to your computer and use it in GitHub Desktop.
Navigation Bar on Android of Xamarin.Forms to be solid color
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <resources> | |
| <style name="KitKatTheme" parent="android:Theme.Holo.Light"> | |
| <item name="android:windowBackground">@color/green</item> <!--This works as background color on Android--> | |
| <item name="android:actionBarStyle">@style/ActionBar.Solid.KitKat</item> | |
| </style> | |
| <!--<style name="ActionBar.Solid.KitKat" parent="@android:style/Widget.Holo.Light.ActionBar.Solid">--> | |
| <!-- <item name="android:background">@color/xamarinblue</item>--> | |
| <!--</style>--> | |
| </resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment