/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | Animated3dActivity.java | 45 ObjectAnimator animator = ObjectAnimator.ofFloat(view, "rotationY", 0.0f, 360.0f); in onCreate() local 46 animator.setDuration(4000); in onCreate() 47 animator.setRepeatCount(ObjectAnimator.INFINITE); in onCreate() 48 animator.setRepeatMode(ObjectAnimator.REVERSE); in onCreate() 49 animator.start(); in onCreate()
|
D | GLTextureViewActivity.java | 94 ObjectAnimator animator = ObjectAnimator.ofFloat(mTextureView, "rotationY", 0.0f, 360.0f); in onSurfaceTextureAvailable() local 95 animator.setRepeatMode(ObjectAnimator.REVERSE); in onSurfaceTextureAvailable() 96 animator.setRepeatCount(ObjectAnimator.INFINITE); in onSurfaceTextureAvailable() 97 animator.setDuration(4000); in onSurfaceTextureAvailable() 98 animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { in onSurfaceTextureAvailable() 104 animator.start(); in onSurfaceTextureAvailable()
|
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/ |
D | Tweener.java | 37 ObjectAnimator animator; field in Tweener 41 animator = anim; in Tweener() 44 private static void remove(Animator animator) { in remove() argument 48 if (entry.getValue().animator == animator) { in remove() 105 anim = sTweens.get(object).animator; in to() 165 tween.animator.cancel(); in replace() 167 tween.animator.setValues( in replace()
|
D | MultiWaveView.java | 112 public void onAnimationEnd(Animator animator) { 118 public void onAnimationEnd(Animator animator) { 133 public void onAnimationEnd(Animator animator) { 344 anim.animator.end(); in stopChevronAnimation() 351 mHandleAnimation.animator.end(); in stopHandleAnimation() 505 anim.animator.end(); in stopTargetAnimation()
|
/frameworks/base/core/java/android/view/ |
D | ViewPropertyAnimator.java | 622 ValueAnimator animator = ValueAnimator.ofFloat(1.0f); in startAnimation() local 632 mAnimatorMap.put(animator, new PropertyBundle(propertyMask, nameValueList)); in startAnimation() 633 animator.addUpdateListener(mAnimatorEventListener); in startAnimation() 634 animator.addListener(mAnimatorEventListener); in startAnimation() 636 animator.setStartDelay(mStartDelay); in startAnimation() 639 animator.setDuration(mDuration); in startAnimation() 642 animator.setInterpolator(mInterpolator); in startAnimation() 644 animator.start(); in startAnimation()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | PlayAnimationThread.java | 30 public PlayAnimationThread(Animator animator, RenderSessionImpl scene, String animName, in PlayAnimationThread() argument 33 mAnimator = animator; in PlayAnimationThread()
|
/frameworks/base/core/java/android/animation/ |
D | LayoutTransition.java | 513 public void setAnimator(int transitionType, Animator animator) { in setAnimator() argument 516 mChangingAppearingAnim = animator; in setAnimator() 519 mChangingDisappearingAnim = animator; in setAnimator() 522 mAppearingAnim = animator; in setAnimator() 525 mDisappearingAnim = animator; in setAnimator() 755 public void onAnimationStart(Animator animator) { in setupChangeAnimation() 766 public void onAnimationCancel(Animator animator) { in setupChangeAnimation() 772 public void onAnimationEnd(Animator animator) { in setupChangeAnimation()
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | animation-resource.jd | 53 <dd><code>res/animator/<em>filename</em>.xml</code><br/> 62 In Java: <code>R.animator.<em>filename</em></code><br/> 63 In XML: <code>@[<em>package</em>:]animator/<em>filename</em></code> 69 <<a href="#animator-set-element">set</a> 72 <<a href="#obj-animator-element">objectAnimator</a> 82 <<a href="#val-animator-element">animator</a> 91 <<a href="#animator-set-element">set</a>> 107 <dt id="animator-set-element"><code><set></code></dt> 131 <dt id="obj-animator-element"><code><objectAnimator></code></dt> 219 <dt id="val-animator-element"><code><animator></code></dt> [all …]
|
D | providing-resources.jd | 91 <td><code>animator/</code></td> 101 the {@code animator/} directory is preferred for property animations to distinguish between the two
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | prop-animation.jd | 13 <li><a href="#value-animator">Animating with ValueAnimator</a></li> 15 <li><a href="#object-animator">Animating with ObjectAnimator</a></li> 32 <li><a href="#view-prop-animator">ViewPropertyAnimator</a></li> 203 <a href="#value-animator">Animating with ValueAnimator</a> for more information.</td> 361 <h2 id="value-animator">Animating with ValueAnimator</h2> 400 <h2 id="object-animator">Animating with ObjectAnimator</h2> 505 <p>For a more complete example on how to use animator sets, see the <a href= 650 the animator that you are using to return an appropriate value for your animated property at the 786 obtain an animator by passing in the {@link android.animation.PropertyValuesHolder} object and 841 do is create a property animator and specify the View property that you want to [all …]
|
D | hardware-accel.jd | 464 ObjectAnimator animator = ObjectAnimator.ofFloat(view, "rotationY", 180); 465 animator.addListener(new AnimatorListenerAdapter() { 471 animator.start();
|
/frameworks/base/docs/html/sdk/ |
D | android-3.0.jd | 520 ObjectAnimator animator = ObjectAnimator.ofFloat(myView, "rotationY", 0, 360); 521 animator.setDuration(2000); 522 animator.start();
|
/frameworks/base/tools/aapt/ |
D | Resource.cpp | 878 ASSIGN_IT(animator); in buildResources()
|
/frameworks/base/api/ |
D | current.txt | 169 public static final class R.animator { 170 ctor public R.animator();
|
D | 14.txt | 169 public static final class R.animator { 170 ctor public R.animator();
|