Skip to content

Instantly share code, notes, and snippets.

@mdeora
Forked from mustafasevgi/styles.xml
Created March 27, 2019 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdeora/23a3f8f2c2968d507656126f967f3109 to your computer and use it in GitHub Desktop.
Save mdeora/23a3f8f2c2968d507656126f967f3109 to your computer and use it in GitHub Desktop.
Android appcompat full screen and hide status bar
<resources>
<style name="AppTheme" parent="@style/Theme.AppCompat.Light">
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment