Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7454e970 authored by Qing Zhong's avatar Qing Zhong Committed by Android (Google) Code Review
Browse files

Merge "Disable UserCallActivity splash animation" into main

parents 79387f09 2b132c24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -137,7 +137,7 @@
                         contacts provider entries. Any data not fitting the schema described is ignored. -->
        <activity android:name=".components.UserCallActivity"
             android:label="@string/userCallActivityLabel"
             android:theme="@style/Theme.Telecomm.Transparent"
             android:theme="@style/Theme.Telecomm.UserCallActivityNoSplash"
             android:permission="android.permission.CALL_PHONE"
             android:excludeFromRecents="true"
             android:process=":ui"
+12 −0
Original line number Diff line number Diff line
@@ -26,6 +26,18 @@
        <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
    </style>

    <style name="Theme.Telecomm.UserCallActivityNoSplash" parent="@android:style/Theme.DeviceDefault.Light">
        <item name="android:forceDarkAllowed">true</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">true</item>
        <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
        <item name="android:windowDisablePreview">true</item>
    </style>

   <style name="Theme.Telecom.DialerSettings" parent="@android:style/Theme.DeviceDefault.Light">
        <item name="android:forceDarkAllowed">true</item>
        <item name="android:actionBarStyle">@style/TelecomDialerSettingsActionBarStyle</item>