Java Code Examples for android.view.View#getRotationX()
The following examples show how to use
android.view.View#getRotationX() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: scene File: ChangeTransform.java License: Apache License 2.0 | 5 votes |
Transforms(View view) { mTranslationX = view.getTranslationX(); mTranslationY = view.getTranslationY(); mTranslationZ = ViewCompat.getTranslationZ(view); mScaleX = view.getScaleX(); mScaleY = view.getScaleY(); mRotationX = view.getRotationX(); mRotationY = view.getRotationY(); mRotationZ = view.getRotation(); }
Example 2
Source Project: scene File: RenderNodeAnimatorWrapper.java License: Apache License 2.0 | 5 votes |
private float getValue(int propertyConstant) { final View node = mView; switch (propertyConstant) { case ViewPropertyAnimatorConstant.TRANSLATION_X: return node.getTranslationX(); case ViewPropertyAnimatorConstant.TRANSLATION_Y: return node.getTranslationY(); case ViewPropertyAnimatorConstant.TRANSLATION_Z: return node.getTranslationZ(); case ViewPropertyAnimatorConstant.ROTATION: return node.getRotation(); case ViewPropertyAnimatorConstant.ROTATION_X: return node.getRotationX(); case ViewPropertyAnimatorConstant.ROTATION_Y: return node.getRotationY(); case ViewPropertyAnimatorConstant.SCALE_X: return node.getScaleX(); case ViewPropertyAnimatorConstant.SCALE_Y: return node.getScaleY(); case ViewPropertyAnimatorConstant.X: return mView.getLeft() + node.getTranslationX(); case ViewPropertyAnimatorConstant.Y: return mView.getTop() + node.getTranslationY(); case ViewPropertyAnimatorConstant.Z: return node.getElevation() + node.getTranslationZ(); case ViewPropertyAnimatorConstant.ALPHA: return mView.getAlpha(); } return 0; }
Example 3
Source Project: scene File: AnimatorUtility.java License: Apache License 2.0 | 5 votes |
@NonNull public static AnimatorInfo captureViewStatus(@NonNull View view) { return new AnimatorInfo(view.getTranslationX(), view.getTranslationY(), view.getScaleX(), view.getScaleY(), view.getRotation(), view.getRotationX(), view.getRotationY(), view.getAlpha()); }
Example 4
Source Project: android_9.0.0_r45 File: ChangeTransform.java License: Apache License 2.0 | 5 votes |
public Transforms(View view) { translationX = view.getTranslationX(); translationY = view.getTranslationY(); translationZ = view.getTranslationZ(); scaleX = view.getScaleX(); scaleY = view.getScaleY(); rotationX = view.getRotationX(); rotationY = view.getRotationY(); rotationZ = view.getRotation(); }
Example 5
Source Project: Flubber File: FlipX.java License: Apache License 2.0 | 5 votes |
@Override public Animator getAnimationFor(AnimationBody animationBody, View view) { final float startRotation = view.getRotationX(); final float endRotation = startRotation + 180f; final PropertyValuesHolder rotationPVH = PropertyValuesHolder.ofFloat(View.ROTATION_X, startRotation, endRotation); final ObjectAnimator animation = ObjectAnimator.ofPropertyValuesHolder(view, rotationPVH); return animation; }
Example 6
Source Project: ChromeLikeTabSwitcher File: PhoneArithmetics.java License: Apache License 2.0 | 5 votes |
@Override public final float getRotation(@NonNull final Axis axis, @NonNull final AbstractItem item) { Condition.INSTANCE.ensureNotNull(axis, "The axis may not be null"); Condition.INSTANCE.ensureNotNull(item, "The view may not be null"); View view = item.getView(); if (getOrientationInvariantAxis(axis) == Axis.DRAGGING_AXIS) { return view.getRotationY(); } else { return view.getRotationX(); } }
Example 7
Source Project: morphos File: ViewDefault.java License: Apache License 2.0 | 5 votes |
public void updateView(View v) { if (v != null) { this.alpha = v.getAlpha(); this.x = v.getX(); this.y = v.getY(); this.z = atLeastLollipop ? v.getZ() : 0; this.width = v.getWidth(); this.height = v.getHeight(); this.expansionScaleX = v.getScaleX(); this.expansionScaleY = v.getScaleY(); this.dispositionAngle = v.getRotation(); this.dispositionAngleX = v.getRotationX(); this.dispositionAngleY = v.getRotationY(); } }
Example 8
Source Project: okhttp-OkGo File: SimpleViewBehavior.java License: Apache License 2.0 | 5 votes |
/** 初始化数据 */ private void prepare(CoordinatorLayout parent, View child, View dependency) { mDependStartX = (int) dependency.getX(); mDependStartY = (int) dependency.getY(); mDependStartWidth = dependency.getWidth(); mDependStartHeight = dependency.getHeight(); mStartX = (int) child.getX(); mStartY = (int) child.getY(); mStartWidth = child.getWidth(); mStartHeight = child.getHeight(); mStartAlpha = child.getAlpha(); mStartRotateX = child.getRotationX(); mStartRotateY = child.getRotationY(); //特殊处理y方向变化 if (mDependTargetY == UNSPECIFIED_INT && dependency instanceof AppBarLayout) { mDependTargetY = ((AppBarLayout) dependency).getTotalScrollRange(); } // 背景颜色渐变 if (child.getBackground() instanceof ColorDrawable) mStartBackgroundColor = ((ColorDrawable) child.getBackground()).getColor(); // 自定义动画 if (mAnimationId != 0) { mAnimation = AnimationUtils.loadAnimation(child.getContext(), mAnimationId); mAnimation.initialize(child.getWidth(), child.getHeight(), parent.getWidth(), parent.getHeight()); } // 兼容5.0以上的沉浸模式 if (Build.VERSION.SDK_INT > 16 && parent.getFitsSystemWindows() && targetY != UNSPECIFIED_INT) { targetY += getStatusBarHeight(parent.getContext()); } isPrepared = true; }
Example 9
Source Project: simple-view-behavior File: SimpleViewBehavior.java License: MIT License | 5 votes |
@Override void prepare(CoordinatorLayout parent, View child, View dependency) { super.prepare(parent, child, dependency); mStartX = (int) child.getX(); mStartY = (int) child.getY(); mStartWidth = child.getWidth(); mStartHeight = child.getHeight(); mStartAlpha = child.getAlpha(); mStartRotateX = child.getRotationX(); mStartRotateY = child.getRotationY(); // only set the start background color when the background is color drawable Drawable background = child.getBackground(); if (background instanceof ColorDrawable) { mStartBackgroundColor = ((ColorDrawable) background).getColor(); } // if parent fitsSystemWindows is true, add status bar height to target y if specified if (Build.VERSION.SDK_INT > 16 && parent.getFitsSystemWindows() && targetY != UNSPECIFIED_INT) { int result = 0; Resources resources = parent.getContext().getResources(); int resourceId = resources.getIdentifier("status_bar_height", "dimen", "android"); if (resourceId > 0) { result = resources.getDimensionPixelSize(resourceId); } targetY += result; } }
Example 10
Source Project: simple-view-behavior File: SimpleViewBehavior.java License: MIT License | 5 votes |
@Override void prepare(CoordinatorLayout parent, View child, View dependency) { super.prepare(parent, child, dependency); mStartX = (int) child.getX(); mStartY = (int) child.getY(); mStartWidth = child.getWidth(); mStartHeight = child.getHeight(); mStartAlpha = child.getAlpha(); mStartRotateX = child.getRotationX(); mStartRotateY = child.getRotationY(); // only set the start background color when the background is color drawable Drawable background = child.getBackground(); if (background instanceof ColorDrawable) { mStartBackgroundColor = ((ColorDrawable) background).getColor(); } // if parent fitsSystemWindows is true, add status bar height to target y if specified if (Build.VERSION.SDK_INT > 16 && parent.getFitsSystemWindows() && targetY != UNSPECIFIED_INT) { int result = 0; Resources resources = parent.getContext().getResources(); int resourceId = resources.getIdentifier("status_bar_height", "dimen", "android"); if (resourceId > 0) { result = resources.getDimensionPixelSize(resourceId); } targetY += result; } }
Example 11
Source Project: KJFrameForAndroid File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static float getRotationX(View view) { return view.getRotationX(); }
Example 12
Source Project: UltimateAndroid File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static float getRotationX(View view) { return view.getRotationX(); }
Example 13
Source Project: imsdk-android File: ViewHelper.java License: MIT License | 4 votes |
static float getRotationX(View view) { return view.getRotationX(); }
Example 14
Source Project: Mover File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static float getRotationX(View view) { return view.getRotationX(); }
Example 15
Source Project: timecat File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static float getRotationX(View view) { return view.getRotationX(); }
Example 16
Source Project: litho File: MountState.java License: Apache License 2.0 | 4 votes |
private static void unsetRotationX(View view, NodeInfo nodeInfo) { if (nodeInfo.isRotationXSet() && view.getRotationX() != 0) { view.setRotationX(0); } }
Example 17
Source Project: letv File: ViewCompatHC.java License: Apache License 2.0 | 4 votes |
public static float getRotationX(View view) { return view.getRotationX(); }
Example 18
Source Project: XDroidAnimation File: ViewHelper.java License: Apache License 2.0 | 4 votes |
public static float getRotationX(View view) { return view.getRotationX(); }
Example 19
Source Project: android-project-wo2b File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static float getRotationX(View view) { return view.getRotationX(); }
Example 20
Source Project: adt-leanback-support File: ViewCompatHC.java License: Apache License 2.0 | 4 votes |
public static float getRotationX(View view) { return view.getRotationX(); }