styles.xml: Disable animations for transparent activities.

This commit is contained in:
Andreas Schildbach 2020-11-21 01:35:03 +01:00
parent 91ecaa6266
commit 79e7a3f353

View file

@ -30,6 +30,7 @@
<style name="My.Theme.Translucent" parent="@style/My.Theme.Light"> <style name="My.Theme.Translucent" parent="@style/My.Theme.Light">
<item name="android:windowIsTranslucent">true</item> <item name="android:windowIsTranslucent">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowBackground">@android:color/transparent</item> <item name="android:windowBackground">@android:color/transparent</item>
<item name="android:backgroundDimEnabled">false</item> <item name="android:backgroundDimEnabled">false</item>
</style> </style>