Java Code Examples for android.view.View#getRotation()
The following examples show how to use
android.view.View#getRotation() .
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: UltimateAndroid File: DynamicGridView.java License: Apache License 2.0 | 6 votes |
@TargetApi(Build.VERSION_CODES.HONEYCOMB) private void updateWobbleState(int visibleItemCount) { for (int i = 0; i < visibleItemCount; i++) { View child = getChildAt(i); if (child != null) { if (mMobileItemId != INVALID_ID && Boolean.TRUE != child.getTag(R.id.dynamic_grid_wobble_tag)) { if (i % 2 == 0) animateWobble(child); else animateWobbleInverse(child); child.setTag(R.id.dynamic_grid_wobble_tag, true); } else if (mMobileItemId == INVALID_ID && child.getRotation() != 0) { child.setRotation(0); child.setTag(R.id.dynamic_grid_wobble_tag, false); } } } }
Example 2
Source Project: Ninja File: DynamicGridView.java License: Apache License 2.0 | 6 votes |
@TargetApi(Build.VERSION_CODES.HONEYCOMB) private void updateWobbleState(int visibleItemCount) { for (int i = 0; i < visibleItemCount; i++) { View child = getChildAt(i); if (child != null) { if (mMobileItemId != INVALID_ID && Boolean.TRUE != child.getTag(R.id.dgv_wobble_tag)) { if (i % 2 == 0) animateWobble(child); else animateWobbleInverse(child); child.setTag(R.id.dgv_wobble_tag, true); } else if (mMobileItemId == INVALID_ID && child.getRotation() != 0) { child.setRotation(0); child.setTag(R.id.dgv_wobble_tag, false); } } } }
Example 3
Source Project: UltimateAndroid File: DynamicGridView.java License: Apache License 2.0 | 6 votes |
@TargetApi(Build.VERSION_CODES.HONEYCOMB) private void updateWobbleState(int visibleItemCount) { for (int i = 0; i < visibleItemCount; i++) { View child = getChildAt(i); if (child != null) { if (mMobileItemId != INVALID_ID && Boolean.TRUE != child.getTag(R.id.dynamic_grid_wobble_tag)) { if (i % 2 == 0) animateWobble(child); else animateWobbleInverse(child); child.setTag(R.id.dynamic_grid_wobble_tag, true); } else if (mMobileItemId == INVALID_ID && child.getRotation() != 0) { child.setRotation(0); child.setTag(R.id.dynamic_grid_wobble_tag, false); } } } }
Example 4
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 5
Source Project: android-project-wo2b File: ViewPropertyAnimatorHC.java License: Apache License 2.0 | 5 votes |
/** * This method gets the value of the named property from the View object. * * @param propertyConstant The property whose value should be returned * @return float The value of the named property */ private float getValue(int propertyConstant) { //final View.TransformationInfo info = mView.mTransformationInfo; View v = mView.get(); if (v != null) { switch (propertyConstant) { case TRANSLATION_X: //return info.mTranslationX; return v.getTranslationX(); case TRANSLATION_Y: //return info.mTranslationY; return v.getTranslationY(); case ROTATION: //return info.mRotation; return v.getRotation(); case ROTATION_X: //return info.mRotationX; return v.getRotationX(); case ROTATION_Y: //return info.mRotationY; return v.getRotationY(); case SCALE_X: //return info.mScaleX; return v.getScaleX(); case SCALE_Y: //return info.mScaleY; return v.getScaleY(); case X: //return v.mLeft + info.mTranslationX; return v.getX(); case Y: //return v.mTop + info.mTranslationY; return v.getY(); case ALPHA: //return info.mAlpha; return v.getAlpha(); } } return 0; }
Example 6
Source Project: DevUtils File: ViewUtils.java License: Apache License 2.0 | 5 votes |
/** * 获取 View 旋转度数 * @param view {@link View} * @return View 旋转度数 */ public static float getRotation(final View view) { if (view != null) { return view.getRotation(); } return 0f; }
Example 7
Source Project: WanAndroid File: AnimHelper.java License: GNU General Public License v3.0 | 5 votes |
public static boolean toggleArrow(View view) { if (view.getRotation() == 0) { view.animate().setDuration(200).rotation(180); return true; } else { view.animate().setDuration(200).rotation(0); return false; } }
Example 8
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 9
Source Project: RxAnimations File: RxAnimations.java License: Apache License 2.0 | 5 votes |
public static Completable enterWithRotation(final View view, final int duration, final int xOffset, final int yOffset, final int delay, final int rotation) { final float startingX = view.getX(); final float startingY = view.getY(); final float startRotation = view.getRotation(); return animate(view, duration, delay) .fadeIn() .counterRotateBy(rotation) .translateBy(xOffset, yOffset) .onAnimationCancel(aView -> set(aView, startingX, startingY, OPAQUE, startRotation)) .schedule(); }
Example 10
Source Project: Mover File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static float getRotation(View view) { return view.getRotation(); }
Example 11
Source Project: UltimateAndroid File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static float getRotation(View view) { return view.getRotation(); }
Example 12
Source Project: MiBandDecompiled File: a.java License: Apache License 2.0 | 4 votes |
static float d(View view) { return view.getRotation(); }
Example 13
Source Project: Auie File: UEViewHelper.java License: GNU General Public License v2.0 | 4 votes |
static float getRotation(View view) { return view.getRotation(); }
Example 14
Source Project: imsdk-android File: ViewHelper.java License: MIT License | 4 votes |
static float getRotation(View view) { return view.getRotation(); }
Example 15
Source Project: KJFrameForAndroid File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static float getRotation(View view) { return view.getRotation(); }
Example 16
Source Project: XDroidAnimation File: ViewHelper.java License: Apache License 2.0 | 4 votes |
public static float getRotation(View view) { return view.getRotation(); }
Example 17
Source Project: CircularReveal File: DynamicAnimation.java License: MIT License | 4 votes |
@Override public float getValue(View view) { return view.getRotation(); }
Example 18
Source Project: adt-leanback-support File: ViewCompatHC.java License: Apache License 2.0 | 4 votes |
public static float getRotation(View view) { return view.getRotation(); }
Example 19
Source Project: letv File: ViewCompatHC.java License: Apache License 2.0 | 4 votes |
public static float getRotation(View view) { return view.getRotation(); }
Example 20
Source Project: Flubber File: Fall.java License: Apache License 2.0 | 4 votes |
private ObjectAnimator getRotation(View view) { final float startRotation = view.getRotation(); final float endRotation = (float) Math.toDegrees(15 * (Math.PI / 180)); return ObjectAnimator.ofFloat(view, View.ROTATION, startRotation, endRotation); }