Created
May 17, 2019 03:59
-
-
Save esabook/9e1cef1b5225a3dc15e85348d6510ae2 to your computer and use it in GitHub Desktop.
custom BG for android popup theme
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="PopupDialog" parent="Base.Theme.AppCompat.Light.Dialog"> | |
<item name="android:windowIsFloating">true</item> | |
<item name="android:windowFullscreen">true</item> | |
<item name="android:windowNoTitle">true</item> | |
<item name="android:background">@drawable/__dialog_background</item> | |
<item name="android:windowBackground">@color/transparent2</item> | |
<item name="android:windowFrame">@color/transparent2</item> | |
<item name="android:windowContentOverlay">@null</item> | |
<item name="android:windowTitleStyle">@null</item> | |
<item name="android:colorBackgroundCacheHint">@color/transparent2</item> | |
<item name="android:layout_width">match_parent</item> | |
<item name="android:layout_height">wrap_content</item> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment