HomeSort by relevance Sort by last modified time
    Searched refs:alphaAnimator (Results 1 - 8 of 8) sorted by null

  /packages/apps/Camera2/src/com/android/camera/widget/
ModeOptions.java 267 final ValueAnimator alphaAnimator = ValueAnimator.ofFloat(0.0f, 1.0f);
268 alphaAnimator.setDuration(SHOW_ALPHA_ANIMATION_TIME);
269 alphaAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
275 alphaAnimator.addListener(new AnimatorListenerAdapter() {
317 mVisibleAnimator.playTogether(radiusAnimator, alphaAnimator, paddingAnimatorSet);
347 final ValueAnimator alphaAnimator = ValueAnimator.ofFloat(1.0f, 0.0f);
348 alphaAnimator.setDuration(HIDE_ALPHA_ANIMATION_TIME);
349 alphaAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
356 alphaAnimator.addListener(new AnimatorListenerAdapter() {
373 mHiddenAnimator.playTogether(radiusAnimator, alphaAnimator);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonRipple.java 226 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(this, "glowAlpha", mGlowAlpha, 0f);
227 alphaAnimator.setInterpolator(Interpolators.ALPHA_OUT);
228 alphaAnimator.setDuration(ANIMATION_DURATION_FADE);
229 alphaAnimator.addListener(mAnimatorListener);
230 alphaAnimator.start();
231 mRunningAnimations.add(alphaAnimator);
  /packages/apps/Camera2/src/com/android/camera/ui/
ModeTransitionView.java 520 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(this, "alpha", 1f, 0f);
521 alphaAnimator.setDuration(FADE_OUT_DURATION_MS);
523 alphaAnimator.setInterpolator(null);
524 alphaAnimator.addListener(new Animator.AnimatorListener() {
550 alphaAnimator.start();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
TrustDrawable.java 223 ValueAnimator alphaAnimator = configureAnimator(
231 set.playTogether(alphaAnimator, sizeAnimator);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
BaseContentFragment.java 401 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(v, "alpha", 1f);
402 alphaAnimator.setDuration(mActivity.getResources().getInteger(
404 alphaAnimator.start();
ActionAdapter.java 345 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(v, "alpha", 1f);
346 alphaAnimator.setDuration(mContext.getResources().getInteger(
348 alphaAnimator.start();
  /packages/apps/Calculator/src/com/android/calculator2/
Calculator.java 347 final Animator alphaAnimator = ObjectAnimator.ofFloat(revealView, View.ALPHA, 0.0f);
348 alphaAnimator.setDuration(
350 alphaAnimator.addListener(listener);
353 animatorSet.play(revealAnimator).before(alphaAnimator);
  /packages/apps/ExactCalculator/src/com/android/calculator2/
Calculator.java 711 final Animator alphaAnimator = ObjectAnimator.ofFloat(revealView, View.ALPHA, 0.0f);
712 alphaAnimator.setDuration(
716 animatorSet.play(revealAnimator).before(alphaAnimator);
    [all...]

Completed in 1055 milliseconds