Searched refs:translationY (Results 1 - 25 of 41) sorted by relevance

12

/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/systemui/recents/views/
H A DTaskViewTransform.java29 public int translationY = 0; field in class:TaskViewTransform
43 translationY = o.translationY;
55 translationY = 0;
72 return (Float.compare(translationY, v) != 0);
88 anim.translationY(translationY);
118 v.setTranslationY(translationY);
147 return "TaskViewTransform delay: " + startDelay + " y: " + translationY + " z: " + translationZ +
H A DSystemBarScrimViews.java66 .translationY(0)
83 .translationY(0)
106 .translationY(-mStatusBarScrimView.getMeasuredHeight())
114 .translationY(mNavBarScrimView.getMeasuredHeight())
H A DTaskView.java224 toTransform.translationY += 200;
301 setTranslationY(transform.translationY + mConfig.taskViewAffiliateGroupEnterOffsetPx);
304 .translationY(transform.translationY)
334 .translationY(transform.translationY)
377 .translationY(ctx.offscreenTranslationY)
427 .translationY(getTranslationY() + mConfig.taskViewAffiliateGroupEnterOffsetPx)
H A DTaskStackViewFilterAlgorithm.java124 Math.abs(toTransform.translationY - fromTransform.translationY));
167 movement = Math.max(movement, Math.abs(toTransform.translationY -
H A DTaskStackViewLayoutAlgorithm.java257 transformOut.translationY = curveProgressToScreenY(pBounded) - mStackVisibleRect.top -
261 transformOut.rect.offset(0, transformOut.translationY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDismissViewButton.java114 float translationY = ((ViewGroup) mParent).getTranslationY();
117 outRect.top += translationY;
118 outRect.bottom += translationY;
H A DExpandableNotificationRow.java818 int translationY = getActualHeight() - expandActionHeight;
819 if (translationY > minHeight) {
820 containerTranslation = translationY;
826 ? (minHeight - translationY) / (float) expandActionHeight
/frameworks/base/tests/Assist/src/com/android/test/assist/
H A DAssistInteractionSession.java128 .translationY(0)
155 .translationY(0)
160 .translationY(0)
/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/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPatternView.java413 long duration, float translationY, final boolean appearing,
418 appearing ? translationY : 0f, appearing ? 0f : translationY, /* translation */
423 mAppearAnimationUtils.createAnimation(mEcaView, delay, duration, translationY,
412 createAnimation(final LockPatternView.CellState animatedCell, long delay, long duration, float translationY, final boolean appearing, Interpolator interpolator, final Runnable finishListener) argument
H A DKeyguardPasswordView.java290 .translationY(mDisappearYTranslation)
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistOrbView.java235 float translationY = (mCircleRect.top + mCircleRect.bottom) / 2.0f
238 translationY += t * mStaticOffset * 0.1f;
243 mLogo.setTranslationY(translationY);
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java411 private static void setTransforms(View view, float translationX, float translationY, argument
415 view.setTranslationY(translationY);
426 public final float translationY; field in class:ChangeTransform.Transforms
436 translationY = view.getTranslationY();
446 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
457 thatTransform.translationY == translationY &&
/frameworks/base/core/java/android/view/
H A DRenderNode.java495 * @param translationY The Y axis translation value of the display list, in pixels
500 public boolean setTranslationY(float translationY) { argument
501 return nSetTranslationY(mNativeRenderNode, translationY);
872 private static native boolean nSetTranslationY(long renderNode, float translationY); argument
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
H A DMainActivity.java61 lv.getChildAt(i).animate().translationY(0).setDuration(DURATION);
88 Log.d("RTTest", "View has translationY: " + v.getTranslationY());
/frameworks/support/design/src/android/support/design/widget/
H A DFloatingActionButton.java357 .translationY(0f)
401 final float translationY = getFabTranslationYForSnackbar(parent, fab);
402 ViewCompat.setTranslationY(fab, translationY);
H A DSnackbar.java478 ViewCompat.animate(mView).translationY(0f)
521 ViewCompat.animate(mView).translationY(mView.getHeight())
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java123 mCurrentActionBarTopAnimator = mActionBarTop.animate().translationY(0)
126 mCurrentActionBarBottomAnimator = mActionBarBottom.animate().translationY(0)
136 .translationY(-mActionBarTop.getHeight())
140 .translationY(mActionBarBottom.getHeight())
H A DLockPatternView.java213 float translationY; field in class:LockPatternView.CellState
446 cellState.translationY = startTranslationY;
457 cellState.translationY = (1 - t) * startTranslationY + t * endTranslationY;
479 cellState.translationY = endTranslationY;
1096 float translationY = cellState.translationY;
1102 drawCircle(canvas, (int) centerX, (int) centerY + translationY,
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogMotion.java131 .translationY(0)
211 .translationY(-mDialogView.getHeight())
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java67 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
102 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
381 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
382 ViewPropertyAnimatorCompatICS.translationY(view, value);
732 * This method will cause the View's <code>translationY</code> property to be animated to the
740 public ViewPropertyAnimatorCompat translationY(float value) { method in class:ViewPropertyAnimatorCompat
743 IMPL.translationY(this, view, value);
1139 * This method will cause the View's <code>translationY</code> property to be animated by the
/frameworks/base/libs/hwui/
H A DRenderProperties.h273 bool setTranslationY(float translationY) { argument
274 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationY, translationY);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DWindowDecorActionBar.java770 ViewPropertyAnimatorCompat a = ViewCompat.animate(mContainerView).translationY(0f);
775 anim.play(ViewCompat.animate(mContentView).translationY(0f));
818 ViewPropertyAnimatorCompat a = ViewCompat.animate(mContainerView).translationY(endingY);
822 anim.play(ViewCompat.animate(mContentView).translationY(endingY));

Completed in 938 milliseconds

12