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

Commit 982952a2 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 8249440 from ded7bcc7 to sc-qpr3-release

Change-Id: Ic2eca736b5ace07666b0ba9cd5b036df79ed1fa3
parents 6fc7be70 ded7bcc7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1344,7 +1344,7 @@
    <string name="sms_short_code_confirm_deny" msgid="1356917469323768230">"Cancel"</string>
    <string name="sms_short_code_remember_choice" msgid="1374526438647744862">"Remember my choice"</string>
    <string name="sms_short_code_remember_undo_instruction" msgid="2620984439143080410">"You can change this later in Settings &gt; Apps"</string>
    <string name="sms_short_code_confirm_always_allow" msgid="2223014893129755950">"Always Allow*"</string>
    <string name="sms_short_code_confirm_always_allow" msgid="2223014893129755950">"Always allow"</string>
    <string name="sms_short_code_confirm_never_allow" msgid="2688828813521652079">"Never Allow"</string>
    <string name="sim_removed_title" msgid="5387212933992546283">"SIM card removed"</string>
    <string name="sim_removed_message" msgid="9051174064474904617">"The mobile network will be unavailable until you restart with a valid SIM card inserted."</string>
+1 −1
Original line number Diff line number Diff line
@@ -2009,7 +2009,7 @@
    <string name="demo_restarting_message" msgid="1160053183701746766">"Mereset perangkat..."</string>
    <string name="suspended_widget_accessibility" msgid="6331451091851326101">"<xliff:g id="LABEL">%1$s</xliff:g> dinonaktifkan"</string>
    <string name="conference_call" msgid="5731633152336490471">"Konferensi Telepon"</string>
    <string name="tooltip_popup_title" msgid="7863719020269945722">"Keterangan alat"</string>
    <string name="tooltip_popup_title" msgid="7863719020269945722">"Tooltip"</string>
    <string name="app_category_game" msgid="4534216074910244790">"Game"</string>
    <string name="app_category_audio" msgid="8296029904794676222">"Musik &amp; Audio"</string>
    <string name="app_category_video" msgid="2590183854839565814">"Film &amp; Video"</string>
+1 −1
Original line number Diff line number Diff line
@@ -389,7 +389,7 @@
    <string name="permlab_systemAlertWindow" msgid="5757218350944719065">"Апликацијава може да се појави врз други апликации"</string>
    <string name="permdesc_systemAlertWindow" msgid="1145660714855738308">"Апликацијава може да се појави врз други апликации или делови од екранот. Тоа може да го попречи нормалното користење на апликацијата и да го смени начинот на кој се појавуваат другите апликации."</string>
    <string name="permlab_runInBackground" msgid="541863968571682785">"извршување во заднина"</string>
    <string name="permdesc_runInBackground" msgid="4344539472115495141">"Апликацијава може да се извршува во заднина. Тоа може побрзо да ја троши батеријата."</string>
    <string name="permdesc_runInBackground" msgid="4344539472115495141">"Апликацијава може да работи во заднина. Тоа може побрзо да ја троши батеријата."</string>
    <string name="permlab_useDataInBackground" msgid="783415807623038947">"користење мобилен интернет во заднина"</string>
    <string name="permdesc_useDataInBackground" msgid="1230753883865891987">"Апликацијава може да користи мобилен интернет во заднина. Тоа може да го зголеми користењето мобилен интернет."</string>
    <string name="permlab_persistentActivity" msgid="464970041740567970">"направи апликацијата постојано да биде активна"</string>
+9 −1
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ import android.animation.AnimatorListenerAdapter
import android.animation.ValueAnimator
import android.content.Context
import android.graphics.Matrix
import android.util.Log
import android.view.RemoteAnimationTarget
import android.view.SyncRtSurfaceTransactionApplier
import android.view.View
@@ -38,6 +39,8 @@ import com.android.systemui.statusbar.policy.KeyguardStateController
import dagger.Lazy
import javax.inject.Inject

const val TAG = "KeyguardUnlock"

/**
 * Starting scale factor for the app/launcher surface behind the keyguard, when it's animating
 * in during keyguard exit.
@@ -254,7 +257,12 @@ class KeyguardUnlockAnimationController @Inject constructor(
    }

    fun hideKeyguardViewAfterRemoteAnimation() {
        if (keyguardViewController.isShowing) {
            keyguardViewController.hide(surfaceBehindRemoteAnimationStartTime, 350)
        } else {
            Log.e(TAG, "#hideKeyguardViewAfterRemoteAnimation called when keyguard view is not " +
                    "showing. Ignoring...")
        }
    }

    /**