Searched refs:translationY (Results 1 - 25 of 38) 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/statusbar/
H A DDismissViewButton.java57 float translationY = ((ViewGroup) mParent).getTranslationY();
60 outRect.top += translationY;
61 outRect.bottom += translationY;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
H A DDismissAnimationsHolder.java82 .translationY(mDismissEnterYDelta)
88 .translationY(mDismissEnterYDelta)
112 .translationY(0)
118 .translationY(0)
142 .translationY(mDismissStartYDelta)
149 .translationY(mDismissStartYDelta)
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DRenderNode_Delegate.java108 /*package*/ static boolean nSetTranslationY(long renderNode, float translationY) { argument
110 if (delegate != null && delegate.mTranslationY != translationY) {
111 delegate.mTranslationY = translationY;
170 float translationY = renderNode.getTranslationY();
176 outMatrix.setTranslate(translationX, translationY);
/frameworks/base/tests/Assist/src/com/android/test/assist/
H A DAssistInteractionSession.java131 .translationY(0)
158 .translationY(0)
163 .translationY(0)
/frameworks/support/compat/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/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/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.java459 * @param translationY The Y axis translation value of the display list, in pixels
464 public boolean setTranslationY(float translationY) { argument
465 return nSetTranslationY(mNativeRenderNode, translationY);
860 private static native boolean nSetTranslationY(long renderNode, float translationY); argument
/frameworks/base/core/java/com/android/internal/widget/
H A DWatchListDecorLayout.java321 /** Only set scrolling for the panel if there is a change in its translationY. */
322 private void setScrolling(View panel, float translationY) { argument
323 if (panel.getTranslationY() != translationY) {
324 panel.setTranslationY(translationY);
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
447 cellState.translationY = startTranslationY;
458 cellState.translationY = (1 - t) * startTranslationY + t * endTranslationY;
480 cellState.translationY = endTranslationY;
1097 float translationY = cellState.translationY;
1103 drawCircle(canvas, (int) centerX, (int) centerY + translationY,
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPatternView.java452 long duration, float translationY, final boolean appearing,
457 appearing ? translationY : 0f, appearing ? 0f : translationY, /* translation */
462 mAppearAnimationUtils.createAnimation(mEcaView, delay, duration, translationY,
451 createAnimation(final LockPatternView.CellState animatedCell, long delay, long duration, float translationY, final boolean appearing, Interpolator interpolator, final Runnable finishListener) argument
H A DKeyguardPasswordView.java321 .translationY(mDisappearYTranslation)
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
H A DMainActivity.java60 lv.getChildAt(i).animate().translationY(0).setDuration(DURATION);
87 Log.d("RTTest", "View has translationY: " + v.getTranslationY());
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DSystemBarScrimViews.java96 .translationY(toY)
H A DRecentsView.java582 animator.translationY(getHeight());
591 animator.translationY(0f);
661 .translationY(0f);
699 .translationY(-mStackActionButton.getMeasuredHeight() * 0.25f);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogMotion.java131 .translationY(0)
211 .translationY(-mDialogView.getHeight())
/frameworks/support/compat/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
383 public void translationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
384 ViewPropertyAnimatorCompatICS.translationY(view, value);
746 * This method will cause the View's <code>translationY</code> property to be animated to the
754 public ViewPropertyAnimatorCompat translationY(float value) { method in class:ViewPropertyAnimatorCompat
757 IMPL.translationY(this, view, value);
1153 * This method will cause the View's <code>translationY</code> property to be animated by the
/frameworks/base/libs/hwui/
H A DRenderProperties.h274 bool setTranslationY(float translationY) { argument
275 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationY, translationY);
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java719 * @param translationY the total translation the surfaces moves in y direction
725 float translationY, Rect displayFrame) {
730 Math.abs(translationY) / displayFrame.height());
750 int translationY = mClipRevealTranslationY + (int)(displayFrame.height() / 7f * t);
752 int translationYCorrection = translationY;
765 translationY = (centerY - halfHeight) - appFrame.top;
781 translationY, displayFrame);
789 TranslateAnimation translate = new TranslateAnimation(translationX, 0, translationY, 0);
822 ? Math.max(Math.abs(translationY), Math.abs(translationX)) : 0;
724 calculateClipRevealTransitionDuration(boolean cutOff, float translationX, float translationY, Rect displayFrame) argument
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DWindowDecorActionBar.java784 ViewPropertyAnimatorCompat a = ViewCompat.animate(mContainerView).translationY(0f);
789 anim.play(ViewCompat.animate(mContentView).translationY(0f));
832 ViewPropertyAnimatorCompat a = ViewCompat.animate(mContainerView).translationY(endingY);
836 anim.play(ViewCompat.animate(mContentView).translationY(endingY));
/frameworks/support/design/src/android/support/design/widget/
H A DSnackbar.java542 .translationY(0f)
581 .translationY(mView.getHeight())
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java112 mCurrentActionBarTopAnimator = ViewCompat.animate(mActionBarTop).translationY(0)
121 .translationY(-mActionBarTop.getHeight())

Completed in 755 milliseconds

12