12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version='1.0' encoding='utf-8'?>
- <resources>
- <style name="AppBaseTheme" parent="android:Theme.Light" />
- <style name="AppTheme" parent="AppBaseTheme">
- </style>
- <style name="ThemeGeneralDialog" parent="Theme.AppCompat.Dialog.Alert">
- <item name="android:windowNoTitle">true</item>
- <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
- </style>
- <style name="ThemeTranslucentActivity">
- <item name="android:windowBackground">@android:color/transparent</item>
- <item name="android:windowNoTitle">true</item>
- <item name="android:windowIsTranslucent">true</item>
- <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
- </style>
- <style name="Theme.AppCompat.NoActionBar.Transparent">
- <item name="android:windowBackground">@android:color/transparent</item>
- <item name="android:windowNoTitle">true</item>
- <item name="android:windowIsTranslucent">true</item>
- <item name="android:windowAnimationStyle">@null</item>
- </style>
- <style name="PermissionDialog" parent="@android:style/Theme.Dialog">
- <item name="android:windowFrame">@null</item>
- <item name="android:windowIsFloating">true</item>
- <item name="android:windowIsTranslucent">false</item>
- <item name="android:windowNoTitle">true</item>
- <item name="android:windowBackground">@android:color/transparent</item>
- <item name="android:backgroundDimEnabled">true</item>
- </style>
- </resources>
|