Skip to content

Instantly share code, notes, and snippets.

@gabrielbmoro
Created September 14, 2019 19:06
Show Gist options
  • Save gabrielbmoro/5236c0d50798479eadd2472b74151032 to your computer and use it in GitHub Desktop.
Save gabrielbmoro/5236c0d50798479eadd2472b74151032 to your computer and use it in GitHub Desktop.
Full Screen Mode Style
<!-- Reference: https://stackoverflow.com/questions/2868047/fullscreen-activity-in-android -->
<style name="Base.ProgrammingChallange.FullScreen" parent="@style/Theme.AppCompat.Light.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment