diff options
| author | 2022-08-31 17:23:18 +0000 | |
|---|---|---|
| committer | 2022-08-31 17:33:38 +0000 | |
| commit | 845c37f145edb9aa51b16ae3a2fcfd56615c6269 (patch) | |
| tree | f87a4ef7d47b6c63dbed3975c48d152dd121fa7f | |
| parent | 77338a2cf48e558d312a372344e4e88402ade71d (diff) | |
Allow dismiss dialog when touch outside in dark theme
Test: atest CtsCompanionDeviceManagerUiAutomationTestCases
Fix: 244284342
Change-Id: I421acf66c63d957ed9414225acd8b843c3c97229
| -rw-r--r-- | packages/CompanionDeviceManager/res/values-night/themes.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/CompanionDeviceManager/res/values-night/themes.xml b/packages/CompanionDeviceManager/res/values-night/themes.xml index 6eb16e726321..55e91b623acb 100644 --- a/packages/CompanionDeviceManager/res/values-night/themes.xml +++ b/packages/CompanionDeviceManager/res/values-night/themes.xml @@ -18,8 +18,8 @@ <style name="ChooserActivity" parent="@android:style/Theme.DeviceDefault.Dialog.NoActionBar"> - <item name="*android:windowFixedHeightMajor">100%</item> - <item name="*android:windowFixedHeightMinor">100%</item> + <item name="android:windowContentOverlay">@null</item> + <item name="android:windowNoTitle">true</item> <item name="android:windowBackground">@android:color/transparent</item> </style> |