Searched defs:translationY (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DAppearAnimationCreator.java27 float translationY, boolean appearing, Interpolator interpolator,
26 createAnimation(T animatedObject, long delay, long duration, float translationY, boolean appearing, Interpolator interpolator, Runnable finishListener) argument
H A DAppearAnimationUtils.java184 public void createAnimation(final View view, long delay, long duration, float translationY, argument
188 view.setTranslationY(appearing ? translationY : 0);
220 startTranslationYAnimation(view, delay, duration, appearing ? 0 : translationY,
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java29 public int translationY = 0; field in class:TaskViewTransform
43 translationY = o.translationY;
55 translationY = 0;
72 return (Float.compare(translationY, v) != 0);
88 anim.translationY(translationY);
118 v.setTranslationY(translationY);
147 return "TaskViewTransform delay: " + startDelay + " y: " + translationY + " z: " + translationZ +
/frameworks/support/v4/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java37 public static void translationY(View view, float value) { method in class:ViewPropertyAnimatorCompatICS
38 view.animate().translationY(value);
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java411 private static void setTransforms(View view, float translationX, float translationY, argument
415 view.setTranslationY(translationY);
426 public final float translationY; field in class:ChangeTransform.Transforms
436 translationY = view.getTranslationY();
446 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
457 thatTransform.translationY == translationY &&
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPatternView.java407 long duration, float translationY, final boolean appearing,
412 appearing ? translationY : 0f, appearing ? 0f : translationY, /* translation */
417 mAppearAnimationUtils.createAnimation(mEcaView, delay, duration, translationY,
406 createAnimation(final LockPatternView.CellState animatedCell, long delay, long duration, float translationY, final boolean appearing, Interpolator interpolator, final Runnable finishListener) argument
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java67 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
102 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
381 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
382 ViewPropertyAnimatorCompatICS.translationY(view, value);
732 * This method will cause the View's <code>translationY</code> property to be animated to the
740 public ViewPropertyAnimatorCompat translationY(float value) { method in class:ViewPropertyAnimatorCompat
743 IMPL.translationY(this, view, value);
1139 * This method will cause the View's <code>translationY</code> property to be animated by the
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java624 * This method will cause the View's <code>translationY</code> property to be animated to the
631 public ViewPropertyAnimator translationY(float value) { method in class:ViewPropertyAnimator
637 * This method will cause the View's <code>translationY</code> property to be animated by the
H A DRenderNode.java495 * @param translationY The Y axis translation value of the display list, in pixels
500 public boolean setTranslationY(float translationY) { argument
501 return nSetTranslationY(mNativeRenderNode, translationY);
872 private static native boolean nSetTranslationY(long renderNode, float translationY); argument
H A DView.java11809 * {@link #setTranslationY(float) translationY} property plus the current
11821 * {@link #setTranslationY(float) translationY} property to be the difference between
11929 * @param translationY The vertical position of this view relative to its top position,
11934 public void setTranslationY(float translationY) { argument
11935 if (translationY != getTranslationY()) {
11937 mRenderNode.setTranslationY(translationY);
20798 * A Property wrapper around the <code>translationY</code> functionality handled by the
20801 public static final Property<View, Float> TRANSLATION_Y = new FloatProperty<View>("translationY") {
22482 stream.addProperty("drawing:translationY", getTranslationY());
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java213 float translationY; field in class:LockPatternView.CellState
446 cellState.translationY = startTranslationY;
457 cellState.translationY = (1 - t) * startTranslationY + t * endTranslationY;
479 cellState.translationY = endTranslationY;
1096 float translationY = cellState.translationY;
1102 drawCircle(canvas, (int) centerX, (int) centerY + translationY,
/frameworks/base/libs/hwui/
H A DRenderProperties.h273 bool setTranslationY(float translationY) { argument
274 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationY, translationY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java505 int translationY = (newStackHeight - minStackHeight);
512 translationY += (1 - partiallyThere) * (mBottomStackPeekSize +
515 translationY = (int) (height - mHeadsUpManager.getTopHeadsUpHeight());
517 paddingOffset = translationY - mTopPadding;
518 stackHeight = (int) (height - (translationY - mTopPadding));
1341 * given translationY or equal to it.
1343 private View getFirstChildBelowTranlsationY(float translationY) { argument
1347 if (child.getVisibility() != View.GONE && child.getTranslationY() >= translationY) {

Completed in 245 milliseconds