Searched defs:mBgAnimator (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcher.java55 private ObjectAnimator mBgAnimator; field in class:KeyguardUserSwitcher
151 if (mBgAnimator != null) {
152 mBgAnimator.cancel();
174 mBgAnimator = ObjectAnimator.ofInt(mBackground, "alpha", 0, 255);
175 mBgAnimator.setDuration(400);
176 mBgAnimator.setInterpolator(Interpolators.ALPHA_IN);
177 mBgAnimator.addListener(new AnimatorListenerAdapter() {
180 mBgAnimator = null;
184 mBgAnimator.start();

Completed in 58 milliseconds