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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDismissViewButton.java56 float translationX = ((ViewGroup) mParent).getTranslationX();
58 outRect.left += translationX;
59 outRect.right += translationX;
H A DExpandableNotificationRow.java943 public void setTranslation(float translationX) { argument
951 mTranslateableViews.get(i).setTranslationX(translationX);
956 mSettingsIconRow.updateSettingsIcons(translationX, getMeasuredWidth());
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DRenderNode_Delegate.java89 /*package*/ static boolean nSetTranslationX(long renderNode, float translationX) { argument
91 if (delegate != null && delegate.mTranslationX != translationX) {
92 delegate.mTranslationX = translationX;
169 float translationX = renderNode.getTranslationX();
176 outMatrix.setTranslate(translationX, translationY);
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
H A DSubActivity.java48 child.animate().translationX(0).setDuration(MainActivity.DURATION);
/frameworks/support/compat/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java33 public static void translationX(View view, float value) { method in class:ViewPropertyAnimatorCompatICS
34 view.animate().translationX(value);
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java411 private static void setTransforms(View view, float translationX, float translationY, argument
414 view.setTranslationX(translationX);
425 public final float translationX; field in class:ChangeTransform.Transforms
435 translationX = view.getTranslationX();
446 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
456 return thatTransform.translationX == translationX &&
/frameworks/base/core/java/android/view/
H A DRenderNode.java438 * @param translationX The X axis translation value of the display list, in pixels
443 public boolean setTranslationX(float translationX) { argument
444 return nSetTranslationX(mNativeRenderNode, translationX);
859 private static native boolean nSetTranslationX(long renderNode, float translationX); argument
H A DViewPropertyAnimator.java598 * This method will cause the View's <code>translationX</code> property to be animated to the
605 public ViewPropertyAnimator translationX(float value) { method in class:ViewPropertyAnimator
611 * This method will cause the View's <code>translationX</code> property to be animated by the
H A DView.java648 * {@link #setTranslationX(float) translationX}. This behavior is contrasted to that of the pre-3.0
12730 * {@link #setTranslationX(float) translationX} property plus the current
12742 * {@link #setTranslationX(float) translationX} property to be the difference between
12839 * @param translationX The horizontal position of this view relative to its left position,
12844 public void setTranslationX(float translationX) { argument
12845 if (translationX != getTranslationX()) {
12847 mRenderNode.setTranslationX(translationX);
13787 * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method only
13802 * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method will propagate
22049 * A Property wrapper around the <code>translationX</cod
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
H A DHomeRecentsEnterExitAnimationHolder.java54 .translationX(0)
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistOrbView.java228 float translationX = (mCircleRect.left + mCircleRect.right) / 2.0f - mLogo.getWidth() / 2.0f;
236 mLogo.setTranslationX(translationX);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DSettingsButton.java102 .translationX(((View) getParent().getParent()).getWidth() - getX())
H A DKeyguardStatusBarView.java271 .translationX(0)
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageView.java203 public void setTranslationX(float translationX) { argument
207 super.setTranslationX(translationX);
/frameworks/support/compat/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java65 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
96 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
378 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
379 ViewPropertyAnimatorCompatICS.translationX(view, value);
729 * This method will cause the View's <code>translationX</code> property to be animated to the
737 public ViewPropertyAnimatorCompat translationX(float value) { method in class:ViewPropertyAnimatorCompat
740 IMPL.translationX(this, view, value);
1136 * This method will cause the View's <code>translationX</code> property to be animated by the
/frameworks/base/libs/hwui/
H A DRenderProperties.h266 bool setTranslationX(float translationX) { argument
267 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationX, translationX);
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java722 * @param translationX the total translation the surface moves in x direction
728 private long calculateClipRevealTransitionDuration(boolean cutOff, float translationX, argument
733 final float fraction = Math.max(Math.abs(translationX) / displayFrame.width(),
755 int translationX = 0;
775 translationX = (centerX - halfWidth) - appFrame.left;
780 translationX = (centerX + halfWidth) - appFrame.right;
784 final long duration = calculateClipRevealTransitionDuration(cutOff, translationX,
793 TranslateAnimation translate = new TranslateAnimation(translationX, 0, translationY, 0);
826 ? Math.max(Math.abs(translationY), Math.abs(translationX)) : 0;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPagingIndicator.java477 public void setTranslationX(float translationX) { argument
478 this.mTranslationX = translationX * mDirection * mLayoutDirection;
/frameworks/base/core/java/android/widget/
H A DStackView.java352 PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", transX);
358 translationY, translationX);
1426 float translationX = v.getTranslationX();
1435 v.setTranslationX(translationX);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DScreenPinningRequest.java169 .translationX(0)
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java277 ViewCompat.animate(view).translationX(0);
349 oldViewAnim.translationX(changeInfo.toX - changeInfo.fromX);
372 newViewAnimation.translationX(0).translationY(0).setDuration(getChangeDuration()).
H A DRecyclerView.java4235 final float translationX = ViewCompat.getTranslationX(child);
4237 if (x >= child.getLeft() + translationX &&
4238 x <= child.getRight() + translationX &&
/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/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DAnimatedRecyclerView.java133 ViewCompat.animate(vh.textView).translationX(0f).alpha(1f)
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DAnimatedRecyclerView.java133 ViewCompat.animate(vh.textView).translationX(0f).alpha(1f)

Completed in 2338 milliseconds