diff options
| author | 2022-06-17 08:18:09 +0000 | |
|---|---|---|
| committer | 2022-06-17 08:18:09 +0000 | |
| commit | 916e42bd216373e33dc606c53c5e2854546dba3e (patch) | |
| tree | f9e44ccb329c05aa402c6d1dea47431949a4fa16 | |
| parent | 7f3f9c454c921f388e4ba14eea6f6466a3f25afc (diff) | |
| parent | b6db15ac2ffc4e29bf5abc0f7bb0a8d75ed8feb5 (diff) | |
Merge "Make WorkLockActivity theme translucent" into tm-dev
| -rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 2 | ||||
| -rw-r--r-- | packages/SystemUI/res/layout/auth_biometric_background.xml | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index 490a3f53fd6a..6f22b49fc6a6 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -723,7 +723,7 @@ android:excludeFromRecents="true" android:stateNotNeeded="true" android:resumeWhilePausing="true" - android:theme="@style/Theme.AppCompat.DayNight.NoActionBar"> + android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"> <intent-filter> <action android:name="android.app.action.CONFIRM_DEVICE_CREDENTIAL_WITH_USER" /> <category android:name="android.intent.category.DEFAULT" /> diff --git a/packages/SystemUI/res/layout/auth_biometric_background.xml b/packages/SystemUI/res/layout/auth_biometric_background.xml index 7ce81ad7f01b..995aea11ffc6 100644 --- a/packages/SystemUI/res/layout/auth_biometric_background.xml +++ b/packages/SystemUI/res/layout/auth_biometric_background.xml @@ -16,6 +16,8 @@ --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:theme="@style/Theme.AppCompat.DayNight" + android:background="?android:colorBackground" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" |