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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java30 public int translationY = 0; field in class:TaskViewTransform
44 translationY = o.translationY;
56 translationY = 0;
73 return (Float.compare(translationY, v) != 0);
89 anim.translationY(translationY);
119 v.setTranslationY(translationY);
146 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.java375 private static void setTransforms(View view, float translationX, float translationY, argument
379 view.setTranslationY(translationY);
390 public final float translationY; field in class:ChangeTransform.Transforms
400 translationY = view.getTranslationY();
410 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
421 thatTransform.translationY == translationY &&
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java65 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
98 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
354 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
355 ViewPropertyAnimatorCompatICS.translationY(view, value);
681 * This method will cause the View's <code>translationY</code> property to be animated to the
689 public ViewPropertyAnimatorCompat translationY(float value) { method in class:ViewPropertyAnimatorCompat
692 IMPL.translationY(this, view, value);
1088 * 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.java626 * This method will cause the View's <code>translationY</code> property to be animated to the
633 public ViewPropertyAnimator translationY(float value) { method in class:ViewPropertyAnimator
639 * This method will cause the View's <code>translationY</code> property to be animated by the
H A DRenderNode.java500 * @param translationY The Y axis translation value of the display list, in pixels
505 public boolean setTranslationY(float translationY) { argument
506 return nSetTranslationY(mNativeRenderNode, translationY);
877 private static native boolean nSetTranslationY(long renderNode, float translationY); argument
H A DView.java10791 * {@link #setTranslationY(float) translationY} property plus the current
10803 * {@link #setTranslationY(float) translationY} property to be the difference between
10911 * @param translationY The vertical position of this view relative to its top position,
10916 public void setTranslationY(float translationY) { argument
10917 if (translationY != getTranslationY()) {
10919 mRenderNode.setTranslationY(translationY);
19414 * A Property wrapper around the <code>translationY</code> functionality handled by the
19417 public static final Property<View, Float> TRANSLATION_Y = new FloatProperty<View>("translationY") {
/frameworks/base/libs/hwui/
H A DRenderProperties.h245 bool setTranslationY(float translationY) { argument
246 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationY, translationY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java459 int translationY = (newStackHeight - minStackHeight);
464 translationY += (1 - partiallyThere) * (mBottomStackPeekSize +
466 setTranslationY(translationY - mTopPadding);
467 stackHeight = (int) (height - (translationY - mTopPadding));
1212 * given translationY or equal to it.
1214 private View getFirstChildBelowTranlsationY(float translationY) { argument
1218 if (child.getVisibility() != View.GONE && child.getTranslationY() >= translationY) {

Completed in 300 milliseconds