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

  /packages/apps/Contacts/src/com/android/contacts/detail/
CarouselTab.java 71 public void fadeInLabelViewAnimator(int startDelay, boolean fadeBackground) {
75 labelAnimator.setStartDelay(startDelay);
82 backgroundAnimator.setStartDelay(startDelay);
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorTest.java 53 long startDelay = 1000;
54 mAnimator.setStartDelay(startDelay);
55 assertEquals(startDelay, mAnimator.getStartDelay());
80 long startDelay = 10000;
81 mAnimator.setStartDelay(startDelay);
ValueAnimatorTest.java 58 long startDelay = 10000;
59 mValueAnimator.setStartDelay(startDelay);
80 long startDelay = 1000;
81 mValueAnimator.setStartDelay(startDelay);
82 assertEquals(startDelay, mValueAnimator.getStartDelay());
  /frameworks/base/core/java/android/animation/
Animator.java 34 * Starts this animation. If the animation has a nonzero startDelay, the animation will start
84 * @param startDelay The amount of the delay, in milliseconds
86 public abstract void setStartDelay(long startDelay);
115 * initial startDelay period and not yet ended).
124 * {@link #getStartDelay() startDelay} will return true for {@link #isStarted()} during the
AnimatorInflater.java 190 long startDelay = a.getInt(com.android.internal.R.styleable.Animator_startOffset, 0);
289 anim.setStartDelay(startDelay);
LayoutTransition.java 92 * and CHANGE_DISAPPEARING animations to null, and setting the startDelay of the
    [all...]
ValueAnimator.java 111 * Tracks whether a startDelay'd animation has begun playing through the startDelay.
116 * Tracks the time at which the animation began playing through its startDelay. This is
118 * active (which is when the startDelay expired and the animation was added to the active
143 * not there is a nonzero startDelay.
150 * startDelay and whether start() was called before end().
444 * frame of an animation. If there is a nonzero <code>startDelay</code>, the
580 // If the animation has a startDelay, place it on the delayed list
664 * @param startDelay The amount of the delay, in milliseconds
666 public void setStartDelay(long startDelay) {
    [all...]
AnimatorSet.java 107 * not there is a nonzero startDelay.
114 // Animator used for a nonzero startDelay
299 // If we're currently in the startDelay period, just cancel that animator and
390 * @param startDelay The amount of the delay, in milliseconds
393 public void setStartDelay(long startDelay) {
394 mStartDelay = startDelay;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 189 float toY, int startDelay, int duration) {
194 translateAnimator.setStartDelay(startDelay);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherViewPropertyAnimator.java 167 public void setStartDelay(long startDelay) {
169 mStartDelay = startDelay;
Launcher.java     [all...]
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 70 * The startDelay of the underlying Animator object. By default, we don't set the startDelay
71 * on the Animator and just use its default startDelay. If the startDelay is ever set on this
72 * Animator, then we use the startDelay that it was set to.
77 * A flag indicating whether the startDelay has been set on this object. If not, we don't set
78 * the startDelay on the underlying Animator, but instead just use its default startDelay.
276 * Returns the current startDelay of property animations. If the startDelay was set on thi
    [all...]
View.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsPanelView.java 541 final int startDelay = 150;
548 v.animate().translationX(0).translationY(0).alpha(1f).setStartDelay(startDelay)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java     [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 383 milliseconds