Searched defs:setTranslationY (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/animation/
H A DAnimatorSetEventsTest.java81 public void setTranslationY(float value) { method in class:AnimatorSetEventsTest
82 button.setTranslationY(value);
/frameworks/base/core/java/android/view/
H A DRenderNode.java484 * @see View#setTranslationY(float)
487 public boolean setTranslationY(float translationY) { method in class:RenderNode
494 * @see #setTranslationY(float)
H A DView.java5291 setTranslationY(ty);
14566 * {@link #setTranslationY(float) translationY} property plus the current
14578 * {@link #setTranslationY(float) translationY} property to be the difference between
14584 setTranslationY(y - mTop);
14691 public void setTranslationY(float translationY) { method in class:View
14694 mRenderNode.setTranslationY(translationY);
19349 renderNode.setTranslationY(mScrollY);
24329 * {@link View#setTranslationY(float)} and {@link View#getTranslationY()} methods.
24334 object.setTranslationY(value);
/frameworks/base/libs/hwui/
H A DRenderProperties.h276 bool setTranslationY(float translationY) { function in class:android::uirenderer::RenderProperties
305 return setTranslationY(value - getTop());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java704 public void setTranslationY(float translationY) { method in class:NotificationContentView
705 super.setTranslationY(translationY);
/frameworks/support/compat/java/android/support/v4/view/
H A DViewCompat.java935 view.setTranslationY(y + 1);
936 view.setTranslationY(y);
2503 * @deprecated Use {@link View#setTranslationY(float)} directly.
2506 public static void setTranslationY(View view, float value) { method in class:ViewCompat
2507 view.setTranslationY(value);
2544 * {@link #setTranslationY(View, float) translationY} property to be the difference between

Completed in 2876 milliseconds