Skip to content

Instantly share code, notes, and snippets.

@MikeChongCan
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save MikeChongCan/9b3bb1b3d7a1698a21ad to your computer and use it in GitHub Desktop.

Select an option

Save MikeChongCan/9b3bb1b3d7a1698a21ad to your computer and use it in GitHub Desktop.
Navigation Bar on Android of Xamarin.Forms to be solid color
<?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