Java Code Examples for android.view.View#getRotation()

The following examples show how to use android.view.View#getRotation() . 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 File: DynamicGridView.java    From UltimateAndroid with Apache License 2.0 6 votes vote down vote up
@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 File: DynamicGridView.java    From Ninja with Apache License 2.0 6 votes vote down vote up
@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 File: DynamicGridView.java    From UltimateAndroid with Apache License 2.0 6 votes vote down vote up
@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 File: RxAnimations.java    From RxAnimations with Apache License 2.0 5 votes vote down vote up
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 5
Source File: ViewDefault.java    From morphos with Apache License 2.0 5 votes vote down vote up
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 6
Source File: AnimHelper.java    From WanAndroid with GNU General Public License v3.0 5 votes vote down vote up
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 7
Source File: ViewUtils.java    From DevUtils with Apache License 2.0 5 votes vote down vote up
/**
 * 获取 View 旋转度数
 * @param view {@link View}
 * @return View 旋转度数
 */
public static float getRotation(final View view) {
    if (view != null) {
        return view.getRotation();
    }
    return 0f;
}
 
Example 8
Source File: ViewPropertyAnimatorHC.java    From android-project-wo2b with Apache License 2.0 5 votes vote down vote up
/**
 * 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 9
Source File: ChangeTransform.java    From scene with Apache License 2.0 5 votes vote down vote up
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 10
Source File: ViewHelper.java    From imsdk-android with MIT License 4 votes vote down vote up
static float getRotation(View view) {
    return view.getRotation();
}
 
Example 11
Source File: UEViewHelper.java    From Auie with GNU General Public License v2.0 4 votes vote down vote up
static float getRotation(View view) {
    return view.getRotation();
}
 
Example 12
Source File: ViewHelper.java    From KJFrameForAndroid with Apache License 2.0 4 votes vote down vote up
static float getRotation(View view) {
    return view.getRotation();
}
 
Example 13
Source File: ViewHelper.java    From XDroidAnimation with Apache License 2.0 4 votes vote down vote up
public static float getRotation(View view) {
	return view.getRotation();
}
 
Example 14
Source File: a.java    From MiBandDecompiled with Apache License 2.0 4 votes vote down vote up
static float d(View view)
{
    return view.getRotation();
}
 
Example 15
Source File: DynamicAnimation.java    From CircularReveal with MIT License 4 votes vote down vote up
@Override
public float getValue(View view) {
  return view.getRotation();
}
 
Example 16
Source File: ViewHelper.java    From UltimateAndroid with Apache License 2.0 4 votes vote down vote up
static float getRotation(View view) {
    return view.getRotation();
}
 
Example 17
Source File: ViewCompatHC.java    From adt-leanback-support with Apache License 2.0 4 votes vote down vote up
public static float getRotation(View view) {
    return view.getRotation();
}
 
Example 18
Source File: ViewCompatHC.java    From letv with Apache License 2.0 4 votes vote down vote up
public static float getRotation(View view) {
    return view.getRotation();
}
 
Example 19
Source File: Fall.java    From Flubber with Apache License 2.0 4 votes vote down vote up
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);
}
 
Example 20
Source File: ViewHelper.java    From Mover with Apache License 2.0 4 votes vote down vote up
static float getRotation(View view) {
    return view.getRotation();
}