Home | History | Annotate | Download | only in browser

Lines Matching refs:animator

163 //        ObjectAnimator animator = ObjectAnimator.ofInt(tab, "TranslationX", 500, 0);
164 // animator.setDuration(mAnimationDuration);
165 // animator.start();
169 // ObjectAnimator animator = ObjectAnimator.ofInt(
171 // animator.setDuration(mAnimationDuration);
172 // animator.addListener(new AnimatorListenerAdapter() {
174 // public void onAnimationEnd(Animator animation) {
178 // animator.setInterpolator(new AccelerateInterpolator());
179 // animator.start();
183 ObjectAnimator animator = ObjectAnimator.ofInt(this, "scroll", getScrollX(), newscroll);
184 animator.setDuration(mAnimationDuration);
185 animator.start();