Searched defs:translationY (Results 1 - 16 of 16) 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/core/java/com/android/internal/widget/
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);
H A DLockPatternView.java220 float translationY; field in class:LockPatternView.CellState
466 cellState.translationY = startTranslationY;
477 cellState.translationY = (1 - t) * startTranslationY + t * endTranslationY;
499 cellState.translationY = endTranslationY;
1128 float translationY = cellState.translationY;
1138 drawCircle(canvas, (int) centerX, (int) centerY + translationY,
/frameworks/layoutlib/bridge/src/android/view/
H A DRenderNode_Delegate.java115 /*package*/ static boolean nSetTranslationY(long renderNode, float translationY) { argument
117 if (delegate != null && delegate.mTranslationY != translationY) {
118 delegate.mTranslationY = translationY;
177 float translationY = renderNode.getTranslationY();
183 outMatrix.setTranslate(translationX, translationY);
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DViewPropertyAnimatorCompat.java174 * This method will cause the View's <code>translationY</code> property to be animated to the
180 public ViewPropertyAnimatorCompat translationY(float value) { method in class:ViewPropertyAnimatorCompat
183 view.animate().translationY(value);
544 * This method will cause the View's <code>translationY</code> property to be animated by the
/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/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardPatternView.java481 long duration, float translationY, final boolean appearing,
486 appearing ? translationY : 0f, appearing ? 0f : translationY, /* translation */
491 mAppearAnimationUtils.createAnimation(mEcaView, delay, duration, translationY,
480 createAnimation(final LockPatternView.CellState animatedCell, long delay, long duration, float translationY, final boolean appearing, Interpolator interpolator, final Runnable finishListener) argument
/frameworks/support/transition/src/main/java/androidx/transition/
H A DChangeTransform.java439 private static void setTransforms(View view, float translationX, float translationY, argument
443 view.setTranslationY(translationY);
/frameworks/base/core/java/android/view/
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
H A DRenderNode.java502 * @param translationY The Y axis translation value of the display list, in pixels
507 public boolean setTranslationY(float translationY) { argument
508 return nSetTranslationY(mNativeRenderNode, translationY);
962 private static native boolean nSetTranslationY(long renderNode, float translationY); argument
H A DView.java15460 * {@link #setTranslationY(float) translationY} property plus the current
15472 * {@link #setTranslationY(float) translationY} property to be the difference between
15581 * @param translationY The vertical position of this view relative to its top position,
15586 public void setTranslationY(float translationY) { argument
15587 if (translationY != getTranslationY()) {
15589 mRenderNode.setTranslationY(translationY);
25516 * A Property wrapper around the <code>translationY</code> functionality handled by the
25519 public static final Property<View, Float> TRANSLATION_Y = new FloatProperty<View>("translationY") {
[all...]
/frameworks/base/libs/hwui/
H A DRenderProperties.h247 bool setTranslationY(float translationY) { argument
248 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationY, translationY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java786 public void setTranslationY(float translationY) { argument
787 super.setTranslationY(translationY);
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java777 * @param translationY the total translation the surfaces moves in y direction
783 float translationY, Rect displayFrame) {
788 Math.abs(translationY) / displayFrame.height());
808 int translationY = mClipRevealTranslationY + (int)(displayFrame.height() / 7f * t);
810 int translationYCorrection = translationY;
823 translationY = (centerY - halfHeight) - appFrame.top;
839 translationY, displayFrame);
847 TranslateAnimation translate = new TranslateAnimation(translationX, 0, translationY, 0);
880 ? Math.max(Math.abs(translationY), Math.abs(translationX)) : 0;
782 calculateClipRevealTransitionDuration(boolean cutOff, float translationX, float translationY, Rect displayFrame) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java887 float translationY;
894 translationY = 0;
912 translationY = NotificationUtils.interpolate(getExpandTranslationStart(), 0,
917 translationY = height - appearStartPosition + getExpandTranslationStart();
921 translationY = MathUtils.lerp(mHeadsUpInset - mTopPadding, 0, appearFraction);
923 stackHeight = (int) (height - translationY);
931 setStackTranslation(translationY);
2090 * given translationY or equal to it.
2092 private View getFirstChildBelowTranlsationY(float translationY, boolean ignoreChildren) { argument
2100 if (rowTranslation >= translationY) {
[all...]

Completed in 319 milliseconds