Searched refs:translationY (Results 1 - 25 of 44) sorted by path

12

/frameworks/base/core/java/android/transition/
H A DChangeTransform.java413 private static void setTransforms(View view, float translationX, float translationY, argument
417 view.setTranslationY(translationY);
428 public final float translationY; field in class:ChangeTransform.Transforms
438 translationY = view.getTranslationY();
448 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
459 thatTransform.translationY == translationY &&
/frameworks/base/core/java/android/view/
H A DRenderNode.java482 * @param translationY The Y axis translation value of the display list, in pixels
487 public boolean setTranslationY(float translationY) { argument
488 return nSetTranslationY(mNativeRenderNode, translationY);
927 private static native boolean nSetTranslationY(long renderNode, float translationY); argument
H A DView.java14634 * {@link #setTranslationY(float) translationY} property plus the current
14646 * {@link #setTranslationY(float) translationY} property to be the difference between
14754 * @param translationY The vertical position of this view relative to its top position,
14759 public void setTranslationY(float translationY) { argument
14760 if (translationY != getTranslationY()) {
14762 mRenderNode.setTranslationY(translationY);
24401 * A Property wrapper around the <code>translationY</code> functionality handled by the
24404 public static final Property<View, Float> TRANSLATION_Y = new FloatProperty<View>("translationY") {
26190 stream.addProperty("drawing:translationY", getTranslationY());
H A DViewPropertyAnimator.java625 * This method will cause the View's <code>translationY</code> property to be animated to the
632 public ViewPropertyAnimator translationY(float value) { method in class:ViewPropertyAnimator
638 * This method will cause the View's <code>translationY</code> property to be animated by the
/frameworks/base/core/java/android/widget/
H A DStackView.java353 PropertyValuesHolder translationY = PropertyValuesHolder.ofFloat("translationY", transY);
358 translationY, translationX);
1430 float translationY = v.getTranslationY();
1439 v.setTranslationY(translationY);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java124 mCurrentActionBarTopAnimator = mActionBarTop.animate().translationY(0)
127 mCurrentActionBarBottomAnimator = mActionBarBottom.animate().translationY(0)
137 .translationY(-mActionBarTop.getHeight())
141 .translationY(mActionBarBottom.getHeight())
H A DDefaultItemAnimator.java286 view.animate().translationY(0);
358 oldViewAnim.translationY(changeInfo.toY - changeInfo.fromY);
380 newViewAnimation.translationX(0).translationY(0).setDuration(getChangeDuration())
H A DLockPatternView.java218 float translationY; field in class:LockPatternView.CellState
456 cellState.translationY = startTranslationY;
467 cellState.translationY = (1 - t) * startTranslationY + t * endTranslationY;
489 cellState.translationY = endTranslationY;
1111 float translationY = cellState.translationY;
1121 drawCircle(canvas, (int) centerX, (int) centerY + translationY,
H A DRecyclerView.java4411 final float translationY = child.getTranslationY();
4414 && y >= child.getTop() + translationY
4415 && y <= child.getBottom() + translationY) {
H A DWatchListDecorLayout.java322 /** Only set scrolling for the panel if there is a change in its translationY. */
323 private void setScrolling(View panel, float translationY) { argument
324 if (panel.getTranslationY() != translationY) {
325 panel.setTranslationY(translationY);
/frameworks/base/libs/hwui/
H A DRenderProperties.h276 bool setTranslationY(float translationY) { argument
277 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationY, translationY);
/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/keyguard/
H A DKeyguardPasswordView.java321 .translationY(mDisappearYTranslation)
H A DKeyguardPatternView.java473 long duration, float translationY, final boolean appearing,
478 appearing ? translationY : 0f, appearing ? 0f : translationY, /* translation */
483 mAppearAnimationUtils.createAnimation(mEcaView, delay, duration, translationY,
472 createAnimation(final LockPatternView.CellState animatedCell, long delay, long duration, float translationY, final boolean appearing, Interpolator interpolator, final Runnable finishListener) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistOrbView.java229 float translationY = (mCircleRect.top + mCircleRect.bottom) / 2.0f
232 translationY += t * mStaticOffset * 0.1f;
237 mLogo.setTranslationY(translationY);
/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/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFragment.java386 .translationY(0f)
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DScreenPinningRequest.java177 .translationY(0)
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsView.java715 animator.translationY(getHeight());
724 animator.translationY(0f);
799 .translationY(0f);
836 mStackActionButton.animate().translationY(mStackActionButton.getMeasuredHeight()
867 .translationY(show ? 0 : start)
H A DSystemBarScrimViews.java96 .translationY(toY)
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDismissViewButton.java57 float translationY = ((ViewGroup) mParent).getTranslationY();
60 outRect.top += translationY;
61 outRect.bottom += translationY;
H A DExpandableNotificationRow.java1127 float translationY = -mContentTransformationAmount * mIconTransformContentShift;
1132 translationY *= 0.4f;
1138 l.setTranslationY(translationY);
1142 mChildrenContainer.setTranslationY(translationY);
H A DNotificationContentView.java704 public void setTranslationY(float translationY) { argument
705 super.setTranslationY(translationY);
H A DNotificationMenuRow.java435 float translationY;
437 translationY = (parentHeight / 2) - (mHorizSpaceForIcon / 2);
439 translationY = (mVertSpaceForIcons - mHorizSpaceForIcon) / 2;
441 mMenuContainer.setTranslationY(translationY);

Completed in 946 milliseconds

12