Blame view
android/GameSDKRelease/res/values/themes.xml
716 Bytes
535d080be
![]() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="container_dialog" parent="@android:style/Theme.Dialog"> <item name="android:windowFrame">@null</item> <item name="android:windowIsFloating">true</item> <item name="android:windowIsTranslucent">true</item> <item name="android:windowNoTitle">true</item> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:backgroundDimEnabled">false</item> <item name="android:windowFullscreen">true</item> </style> <style name="ex_win" parent="@style/container_dialog"> <item name="android:backgroundDimEnabled">true</item> </style> </resources> |