/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/ |
AnimatedVectorDrawable_Delegate.java | 26 import android.animation.AnimatorSet; 141 AnimatorSetHolder animatorSet = sAnimatorSets.getDelegate(animatorSetPtr); 142 assert animatorSet != null; 144 animatorSet.start(); 149 AnimatorSetHolder animatorSet = sAnimatorSets.getDelegate(animatorSetPtr); 150 assert animatorSet != null; 152 animatorSet.reverse(); 157 AnimatorSetHolder animatorSet = sAnimatorSets.getDelegate(animatorSetPtr); 158 assert animatorSet != null; 160 animatorSet.end() [all...] |
/packages/apps/Calculator/src/com/android/calculator2/ |
Calculator.java | 22 import android.animation.AnimatorSet; 286 final AnimatorSet animatorSet = new AnimatorSet(); 287 animatorSet.playTogether( 292 animatorSet.setDuration(getResources().getInteger(android.R.integer.config_mediumAnimTime)); 293 animatorSet.setInterpolator(new AccelerateDecelerateInterpolator()); 294 animatorSet.start(); 352 final AnimatorSet animatorSet = new AnimatorSet() [all...] |
/packages/apps/ExactCalculator/src/com/android/calculator2/ |
Calculator.java | 31 import android.animation.AnimatorSet; 615 final AnimatorSet animatorSet = new AnimatorSet(); 616 animatorSet.playTogether( 621 animatorSet.setDuration(getResources().getInteger(android.R.integer.config_mediumAnimTime)); 622 animatorSet.setInterpolator(new AccelerateDecelerateInterpolator()); 623 animatorSet.start(); 715 final AnimatorSet animatorSet = new AnimatorSet() [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
BouncingBalls.java | 61 AnimatorSet animation = null; 124 AnimatorSet bouncer = new AnimatorSet(); 143 AnimatorSet animatorSet = new AnimatorSet(); 144 animatorSet.play(bouncer).before(fadeAnim); 147 animatorSet.start();
|
/frameworks/base/core/java/android/transition/ |
TransitionUtils.java | 20 import android.animation.AnimatorSet; 47 AnimatorSet animatorSet = new AnimatorSet(); 48 animatorSet.playTogether(animator1, animator2); 49 return animatorSet;
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
TimerFragment.java | 21 import android.animation.AnimatorSet; 470 final AnimatorSet animatorSet = new AnimatorSet(); 471 animatorSet.play(fadeOut).before(fadeIn); 472 animatorSet.start(); 522 final AnimatorSet buttons = new AnimatorSet(); 540 final AnimatorSet animatorSet = new AnimatorSet() [all...] |
/cts/tests/tests/animation/src/android/animation/cts/ |
AnimationActivity.java | 21 import android.animation.AnimatorSet; 177 public void startAnimatorSet(AnimatorSet set){ 191 AnimatorSet animation = null; 221 AnimatorSet bouncer = new AnimatorSet(); 234 AnimatorSet animatorSet = new AnimatorSet(); 235 animatorSet.play(bouncer).before(fadeAnim); 236 animatorSet.start() [all...] |
AnimatorSetTest.java | 29 import android.animation.AnimatorSet; 41 private AnimatorSet mAnimatorSet; 68 mAnimatorSet = new AnimatorSet(); 76 AnimatorSet set = new AnimatorSet(); 85 * @param set AnimatorSet to be started and verified 86 * @param animators animators that we put in the AnimatorSet, in the order that they'll play 88 private void verifySequentialPlayOrder(final AnimatorSet set, Animator[] animators) 144 mAnimatorSet = new AnimatorSet(); 159 AnimatorSet set = new AnimatorSet() [all...] |
/frameworks/base/core/jni/ |
android_graphics_drawable_AnimatedVectorDrawable.cpp | 94 PropertyValuesAnimatorSet* animatorSet = new PropertyValuesAnimatorSet(); 95 return reinterpret_cast<jlong>(animatorSet);
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
PasswordTextView.java | 21 import android.animation.AnimatorSet; 650 AnimatorSet animatorSet = new AnimatorSet(); 651 animatorSet.playSequentially(overShootAnimator, settleBackAnimator); 652 animatorSet.setStartDelay(delay); 653 animatorSet.start(); 654 dotAnimator = animatorSet;
|
/packages/apps/TV/src/com/android/tv/onboarding/ |
WelcomeFragment.java | 22 import android.animation.AnimatorSet; 689 AnimatorSet set = new AnimatorSet(); 748 AnimatorSet animatorSet = new AnimatorSet(); 752 animatorSet.playSequentially(hideAnimator, 758 animatorSet.playSequentially(hideAnimator, 765 animatorSet.playSequentially(hideAnimator, 776 animatorSet.addListener(new AnimatorListenerAdapter() [all...] |
/frameworks/base/core/java/android/view/ |
ViewPropertyAnimator.java | 425 Set<Animator> animatorSet = mAnimatorMapCopy.keySet(); 426 for (Animator runningAnim : animatorSet) { [all...] |
RenderNode.java | 796 public void addAnimator(AnimatedVectorDrawable.VectorDrawableAnimatorRT animatorSet) { 800 nAddAnimator(mNativeRenderNode, animatorSet.getAnimatorNativePtr()); [all...] |
/packages/apps/PackageInstaller/src/android/support/wearable/view/ |
WearableListView.java | 20 import android.animation.AnimatorSet; 538 AnimatorSet animatorSet = new AnimatorSet(); 539 animatorSet.playTogether(animators); 540 mScrollAnimator = animatorSet; [all...] |
/frameworks/base/core/java/android/animation/ |
AnimatorSet.java | 33 * <p>There are two different approaches to adding animations to a <code>AnimatorSet</code>: 34 * either the {@link AnimatorSet#playTogether(Animator[]) playTogether()} or 35 * {@link AnimatorSet#playSequentially(Animator[]) playSequentially()} methods can be called to add 36 * a set of animations all at once, or the {@link AnimatorSet#play(Animator)} can be 37 * used in conjunction with methods in the {@link AnimatorSet.Builder Builder} 41 * <p>It is possible to set up a <code>AnimatorSet</code> with circular dependencies between 50 * <p>For more information about animating with {@code AnimatorSet}, read the 55 public final class AnimatorSet extends Animator { 57 private static final String TAG = "AnimatorSet"; 67 * cancel or end when cancel() or end() is called on this AnimatorSet [all...] |
/frameworks/base/graphics/java/android/graphics/drawable/ |
AnimatedVectorDrawable.java | 20 import android.animation.AnimatorSet; 68 * {@link android.animation.AnimatorSet} to animate the properties of a 119 * or AnimatorSet. 171 private AnimatorSet mAnimatorSetFromXml = null; 468 /** Fully inflated animators awaiting cloning into an AnimatorSet. */ 557 * @param animatorSet the animator set to which the animators should 562 public void prepareLocalAnimators(@NonNull AnimatorSet animatorSet, 583 final AnimatorSet.Builder builder = animatorSet.play(firstAnim) [all...] |
/external/robolectric/v3/runtime/ |
android-all-4.1.2_r1-robolectric-0.jar | |
android-all-4.2.2_r1.2-robolectric-0.jar | |
android-all-4.3_r2-robolectric-0.jar | |