Fix flickering during share

This commit is contained in:
J-Jamet
2020-05-23 10:48:36 +02:00
parent b07f70e9fe
commit 34bf8f9d1f
2 changed files with 13 additions and 0 deletions

View File

@@ -135,6 +135,7 @@
android:name="com.kunzisoft.keepass.settings.SettingsActivity" />
<activity
android:name="com.kunzisoft.keepass.activities.AutofillLauncherActivity"
android:theme="@style/Theme.Transparent"
android:configChanges="keyboardHidden" />
<activity
android:name="com.kunzisoft.keepass.settings.SettingsAdvancedUnlockActivity" />
@@ -142,6 +143,7 @@
android:name="com.kunzisoft.keepass.settings.AutofillSettingsActivity" />
<activity
android:name="com.kunzisoft.keepass.activities.EntrySelectionLauncherActivity"
android:theme="@style/Theme.Transparent"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEND" />

View File

@@ -349,4 +349,15 @@
<item name="android:background">@drawable/background_progress_circle</item>
</style>
<!-- Transparent -->
<style name="Theme.Transparent" parent="Theme.MaterialComponents">
<item name="android:windowAnimationStyle">@null</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
</resources>