Skip to content

Instantly share code, notes, and snippets.

@thynson
Created July 29, 2014 13:22
Show Gist options
  • Save thynson/e5e4691e3cf9c97f13a2 to your computer and use it in GitHub Desktop.
Save thynson/e5e4691e3cf9c97f13a2 to your computer and use it in GitHub Desktop.
Android themes
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="@style/Theme.AppCompat.Light">
</style>
<style name="AppTheme.NoActionBar" parent="AppTheme">
<item name="android:windowNoTitle">true</item>
</style>
<style name="AppTheme.FullScreen" parent="AppTheme">
<item name="android:windowFullscreen">true</item>
</style>
<style name="AppTheme.NoActionBar.FullScreen" parent="AppTheme">
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment