Created
October 22, 2014 11:56
-
-
Save Hackforid/7d8e4084053efb905ea5 to your computer and use it in GitHub Desktop.
Android Style
This file contains 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
<resources> | |
<style name="AppBaseTheme" parent="Theme.AppCompat.Light"> | |
</style> | |
<style name="AppBaseTheme.Compact" parent="AppBaseTheme"> | |
</style> | |
<style name="AppTheme.Preference" parent="android:Theme.Holo.Light"/> | |
<style name="AppTheme" parent="AppBaseTheme.Compact"> | |
<item name="colorPrimary">@color/primary_red</item> | |
<item name="colorPrimaryDark">@color/primary_dark_red</item> | |
</style> | |
</resources> |
This file contains 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="AppBaseTheme.Compact" parent="AppBaseTheme"> | |
<item name="android:windowBackground">@color/primary_dark_red</item> | |
<item name="android:windowTranslucentStatus">true</item> | |
<item name="android:windowTranslucentNavigation">true</item> | |
<item name="android:fitsSystemWindows">true</item> | |
</style> | |
</resources> |
This file contains 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
<resources> | |
<!-- Base application theme. --> | |
<style name="AppBaseTheme" parent="android:Theme.Material.Light"> | |
<!-- Customize your theme here. --> | |
</style> | |
<style name="AppTheme.Preference" parent="android:Theme.Material.Light"/> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment