Created
September 14, 2019 19:06
-
-
Save gabrielbmoro/5236c0d50798479eadd2472b74151032 to your computer and use it in GitHub Desktop.
Full Screen Mode Style
This file contains hidden or 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
<!-- 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