Skip to content

Instantly share code, notes, and snippets.

@vipulshah2010
Created June 20, 2015 10:41
Show Gist options
  • Save vipulshah2010/3102d7ce011d6754e5ec to your computer and use it in GitHub Desktop.
Save vipulshah2010/3102d7ce011d6754e5ec to your computer and use it in GitHub Desktop.
Material Theme
<style name="Theme.sample_app" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<item name="colorAccent">@color/accent</item>
<item name="android:windowNoTitle">true</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>
<style name="ActionBarThemeOverlay" parent="">
<item name="android:textColorPrimary">@android:color/white</item>
<item name="android:textColorSecondary">@android:color/white</item>
<item name="actionMenuTextColor">@android:color/white</item>
<item name="drawerArrowStyle">@style/WhiteDrawerIconStyle</item>
</style>
<style name="WhiteDrawerIconStyle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="spinBars">true</item>
<item name="color">@android:color/white</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment