Created
January 21, 2019 18:57
-
-
Save haxzie-xx/7ddef41a7a840581688fc85fd16393e2 to your computer and use it in GitHub Desktop.
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
| <style name="FullScreenDialogStyle" parent="Theme.AppCompat.Dialog"> | |
| <item name="android:windowNoTitle">true</item> | |
| <item name="colorPrimaryDark">@color/colorPrimaryDark</item> | |
| <item name="colorPrimary">@color/colorPrimary</item> | |
| <!-- Set this to true if you want Full Screen without status bar --> | |
| <item name="android:windowFullscreen">false</item> | |
| <item name="android:windowIsFloating">false</item> | |
| <!-- This is important! Don't forget to set window background --> | |
| <item name="android:windowBackground">@color/colorWhite</item> | |
| <!-- Additionally if you want animations when dialog opening --> | |
| <item name="android:windowEnterAnimation">@anim/slide_up</item> | |
| <item name="android:windowExitAnimation">@anim/slide_down</item> | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment