Searched refs:translationY (Results 26 - 38 of 38) sorted by relevance

12

/frameworks/base/core/java/android/widget/
H A DStackView.java353 PropertyValuesHolder translationY = PropertyValuesHolder.ofFloat("translationY", transY);
358 translationY, translationX);
1425 float translationY = v.getTranslationY();
1434 v.setTranslationY(translationY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSContainer.java300 .translationY(0f)
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DScreenPinningRequest.java170 .translationY(0)
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java280 ViewCompat.animate(view).translationY(0);
350 oldViewAnim.translationY(changeInfo.toY - changeInfo.fromY);
372 newViewAnimation.translationX(0).translationY(0).setDuration(getChangeDuration()).
H A DRecyclerView.java4233 final float translationY = ViewCompat.getTranslationY(child);
4236 y >= child.getTop() + translationY &&
4237 y <= child.getBottom() + translationY) {
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewController.java1032 .translationX(0).translationY(0).setDuration(ENTER_ANIMATION_DURATION_MS);
1119 .translationX(translateX).translationY(translateY)
1123 .translationX(translateX).translationY(translateY)
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java767 .translationY(0)
783 .translationY(s1.h-inset)
802 .translationY(mHeight-s2.h)
818 .translationY(mHeight-s2.h-yinset)
/frameworks/base/services/core/java/com/android/server/policy/
H A DImmersiveModeConfirmation.java310 .translationY(0)
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java988 .translationY(-mHintDistance)
995 .translationY(0)
H A DKeyguardBottomAreaView.java657 .translationY(0f)
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java675 float translationY;
679 translationY = 0;
684 translationY = NotificationUtils.interpolate(getExpandTranslationStart(), 0,
689 translationY = height - appearStartPosition + getExpandTranslationStart();
691 stackHeight = (int) (height - translationY);
698 setStackTranslation(translationY);
1762 * given translationY or equal to it.
1764 private View getFirstChildBelowTranlsationY(float translationY) { argument
1768 if (child.getVisibility() != View.GONE && child.getTranslationY() >= translationY) {
/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 DView.java12753 * {@link #setTranslationY(float) translationY} property plus the current
12765 * {@link #setTranslationY(float) translationY} property to be the difference between
12873 * @param translationY The vertical position of this view relative to its top position,
12878 public void setTranslationY(float translationY) { argument
12879 if (translationY != getTranslationY()) {
12881 mRenderNode.setTranslationY(translationY);
22065 * A Property wrapper around the <code>translationY</code> functionality handled by the
22068 public static final Property<View, Float> TRANSLATION_Y = new FloatProperty<View>("translationY") {
23839 stream.addProperty("drawing:translationY", getTranslationY());

Completed in 515 milliseconds

12