diff options
author | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2022-11-24 07:55:10 +0000 |
---|---|---|
committer | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2022-11-24 07:55:10 +0000 |
commit | 8aca1315ebb0e2fa8ef299d65b7f58f2fcb50edb (patch) | |
tree | 65aa9aeadbda944ffa1c40996ef3edece83b2ba9 /app/src/main/res/values/themes.xml | |
parent | 8c42f1e7b4c240d112c2ab617254248fe2f51014 (diff) |
5903 warn user on feature activation
Diffstat (limited to 'app/src/main/res/values/themes.xml')
-rw-r--r-- | app/src/main/res/values/themes.xml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index febea31..7047f3f 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -12,9 +12,18 @@ <item name="android:windowLightNavigationBar">@bool/is_day</item> <item name="android:windowLightStatusBar">@bool/is_day</item> - <!-- Customize your theme here. --> <item name="android:textColor">@color/primary_text</item> <item name="android:textSize">16sp</item> </style> + + <style name="Theme.InvisibleActivity" parent="Theme.PrivacyCentralApp"> + <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:background">@android:color/transparent</item> + <item name="android:windowBackground">@null</item> + </style> + </resources>
\ No newline at end of file |