Home
last modified time | relevance | path

Searched refs:mBgAnimator (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardUserSwitcher.java54 private ObjectAnimator mBgAnimator; field in KeyguardUserSwitcher
136 if (mBgAnimator != null) { in cancelAnimations()
137 mBgAnimator.cancel(); in cancelAnimations()
159 mBgAnimator = ObjectAnimator.ofInt(mBackground, "alpha", 0, 255); in startAppearAnimation()
160 mBgAnimator.setDuration(400); in startAppearAnimation()
161 mBgAnimator.setInterpolator(PhoneStatusBar.ALPHA_IN); in startAppearAnimation()
162 mBgAnimator.addListener(new AnimatorListenerAdapter() { in startAppearAnimation()
165 mBgAnimator = null; in startAppearAnimation()
169 mBgAnimator.start(); in startAppearAnimation()