Searched refs:translationZ (Results 1 - 18 of 18) sorted by relevance

/frameworks/support/v4/api21/android/support/v4/view/
H A DViewPropertyAnimatorCompatLollipop.java23 public static void translationZ(View view, float value) { method in class:ViewPropertyAnimatorCompatLollipop
24 view.animate().translationZ(value);
H A DViewCompatLollipop.java46 public static void setTranslationZ(View view, float translationZ) { argument
47 view.setTranslationZ(translationZ);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java30 public float translationZ = 0; field in class:TaskViewTransform
44 translationZ = o.translationZ;
56 translationZ = 0;
75 return (Float.compare(translationZ, v) != 0);
91 anim.translationZ(translationZ);
121 v.setTranslationZ(translationZ);
147 return "TaskViewTransform delay: " + startDelay + " y: " + translationY + " z: " + translationZ +
H A DTaskView.java225 toTransform.translationZ = 0;
331 animate().translationZ(transform.translationZ);
H A DTaskStackViewLayoutAlgorithm.java259 transformOut.translationZ = Math.max(minZ, minZ + (pBounded * (maxZ - minZ)));
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPreviewPageFrame.java76 animate().translationZ(mSelectedElevation)
84 animate().translationZ(mNotSelectedElevation)
/frameworks/support/design/lollipop/android/support/design/widget/
H A DFloatingActionButtonLollipop.java103 void setPressedTranslationZ(float translationZ) { argument
106 // Animate translationZ to our value when pressed or focused
108 setupAnimator(ObjectAnimator.ofFloat(mView, "translationZ", translationZ)));
110 setupAnimator(ObjectAnimator.ofFloat(mView, "translationZ", translationZ)));
111 // Animate translationZ to 0 otherwise
113 setupAnimator(ObjectAnimator.ofFloat(mView, "translationZ", 0f)));
/frameworks/support/design/eclair-mr1/android/support/design/widget/
H A DFloatingActionButtonEclairMr1.java56 // Elevate with translationZ when pressed or focused
141 void setPressedTranslationZ(float translationZ) { argument
142 if (mPressedTranslationZ != translationZ && mShadowDrawable != null) {
143 mPressedTranslationZ = translationZ;
144 mShadowDrawable.setMaxShadowSize(mElevation + translationZ);
/frameworks/support/design/base/android/support/design/widget/
H A DFloatingActionButtonImpl.java55 abstract void setPressedTranslationZ(float translationZ); argument
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java412 float translationZ, float scaleX, float scaleY, float rotationX,
416 view.setTranslationZ(translationZ);
427 public final float translationZ; field in class:ChangeTransform.Transforms
437 translationZ = view.getTranslationZ();
446 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
458 thatTransform.translationZ == translationZ &&
411 setTransforms(View view, float translationX, float translationY, float translationZ, float scaleX, float scaleY, float rotationX, float rotationY, float rotationZ) argument
/frameworks/base/core/java/android/view/
H A DRenderNode.java519 public boolean setTranslationZ(float translationZ) { argument
520 return nSetTranslationZ(mNativeRenderNode, translationZ);
873 private static native boolean nSetTranslationZ(long renderNode, float translationZ); argument
H A DViewPropertyAnimator.java650 * This method will cause the View's <code>translationZ</code> property to be animated to the
657 public ViewPropertyAnimator translationZ(float value) { method in class:ViewPropertyAnimator
663 * This method will cause the View's <code>translationZ</code> property to be animated by the
H A DView.java11832 * {@link #setTranslationZ(float) translationZ} property plus the current
11844 * {@link #setTranslationZ(float) translationZ} property to be the difference between
11960 public void setTranslationZ(float translationZ) { argument
11961 if (translationZ != getTranslationZ()) {
11963 mRenderNode.setTranslationZ(translationZ);
20814 * A Property wrapper around the <code>translationZ</code> functionality handled by the
20817 public static final Property<View, Float> TRANSLATION_Z = new FloatProperty<View>("translationZ") {
22483 stream.addProperty("drawing:translationZ", getTranslationZ());
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java69 public void translationZ(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
257 public void translationZ(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
623 public void translationZ(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.LollipopViewPropertyAnimatorCompatImpl
624 ViewPropertyAnimatorCompatLollipop.translationZ(view, value);
1156 * This method will cause the View's <code>translationZ</code> property to be animated by the
1173 * This method will cause the View's <code>translationZ</code> property to be animated to the
1181 public ViewPropertyAnimatorCompat translationZ(float value) { method in class:ViewPropertyAnimatorCompat
1184 IMPL.translationZ(this, view, value);
H A DViewCompat.java349 public void setTranslationZ(View view, float translationZ); argument
761 public void setTranslationZ(View view, float translationZ) { argument
1427 public void setTranslationZ(View view, float translationZ) { argument
1428 ViewCompatLollipop.setTranslationZ(view, translationZ);
2566 public static void setTranslationZ(View view, float translationZ) { argument
2567 IMPL.setTranslationZ(view, translationZ);
3019 * {@link #setTranslationZ(View, float) translationZ} property plus the current
/frameworks/base/libs/hwui/
H A DRenderProperties.h281 bool setTranslationZ(float translationZ) { argument
282 return RP_SET(mPrimitiveFields.mTranslationZ, translationZ);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackScrollAlgorithm.java824 float translationZ = mZBasicHeight
826 childViewState.zTranslation = translationZ;
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java560 mSplash.animate().alpha(0).translationZ(0).setDuration(300).withEndAction(
1165 .translationZ(PARAMS.PLAYER_Z_BOOST)
1179 .translationZ(PARAMS.PLAYER_Z)

Completed in 888 milliseconds