Home | History | Annotate | Download | only in widget

Lines Matching refs:anim

232             ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 1);
233 anim.setDuration(FADE_DURATION);
234 anim.setInterpolator(sAlphaInterpolator);
236 anim.addListener(mVisAnimListener.withFinalVisibility(visibility));
237 anim.start();
239 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 0);
240 anim.setDuration(FADE_DURATION);
241 anim.setInterpolator(sAlphaInterpolator);
243 anim.addListener(mVisAnimListener.withFinalVisibility(visibility));
244 anim.start();