diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-05-09 19:44:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 19:44:24 +0200 |
commit | 9a77f6bbea95034f6dd6cdb2e0351a90dc3906f4 (patch) | |
tree | 89d203712bbe0e89d521668603bff057f86239f6 | |
parent | 4c461fb174428d0c96d80a634e01578e846eb44b (diff) |
Use NoBackgroundTheme for utility activities (#770)
-rw-r--r-- | app/src/main/AndroidManifest.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 092db9e8..c89d2599 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -95,7 +95,9 @@ android:label="@string/pref_ssh_keygen_title" android:name=".sshkeygen.SshKeyGenActivity" android:windowSoftInputMode="adjustResize" /> - <activity android:name=".autofill.oreo.ui.AutofillDecryptActivity" /> + <activity + android:name=".autofill.oreo.ui.AutofillDecryptActivity" + android:theme="@style/NoBackgroundTheme" /> <activity android:name=".autofill.oreo.ui.AutofillFilterView" android:configChanges="orientation|keyboardHidden" @@ -103,7 +105,7 @@ android:theme="@style/DialogLikeTheme" /> <activity android:name=".autofill.oreo.ui.AutofillSaveActivity" - android:theme="@style/DialogLikeTheme"/> + android:theme="@style/NoBackgroundTheme"/> <activity android:name=".autofill.oreo.ui.AutofillPublisherChangedActivity" android:configChanges="orientation|keyboardHidden" |