本文整理汇总了Java中android.view.View.getRotation方法的典型用法代码示例。如果您正苦于以下问题:Java View.getRotation方法的具体用法?Java View.getRotation怎么用?Java View.getRotation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.view.View
的用法示例。
在下文中一共展示了View.getRotation方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: updateWobbleState
import android.view.View; //导入方法依赖的package包/类
@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.wobble_tag)) {
if (i % 2 == 0)
animateWobble(child);
else
animateWobbleInverse(child);
child.setTag(R.id.wobble_tag, true);
} else if (mMobileItemId == INVALID_ID && child.getRotation() != 0) {
child.setRotation(0);
child.setTag(R.id.wobble_tag, false);
}
}
}
}
示例2: getValue
import android.view.View; //导入方法依赖的package包/类
/**
* 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;
}
示例3: getRotation
import android.view.View; //导入方法依赖的package包/类
public static float getRotation(View view) {
if (View10.NEED_PROXY) {
return View10.wrap(view).getRotation();
} else {
return view.getRotation();
}
}
示例4: getValue
import android.view.View; //导入方法依赖的package包/类
private float getValue(int propertyConstant) {
View v = (View) this.mView.get();
if (v != null) {
switch (propertyConstant) {
case 1:
return v.getTranslationX();
case 2:
return v.getTranslationY();
case 4:
return v.getScaleX();
case 8:
return v.getScaleY();
case 16:
return v.getRotation();
case 32:
return v.getRotationX();
case 64:
return v.getRotationY();
case 128:
return v.getX();
case 256:
return v.getY();
case 512:
return v.getAlpha();
}
}
return 0.0f;
}
示例5: updateView
import android.view.View; //导入方法依赖的package包/类
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();
}
}
示例6: getRotation
import android.view.View; //导入方法依赖的package包/类
static float getRotation(View view) {
return view.getRotation();
}
示例7: enterWithRotation
import android.view.View; //导入方法依赖的package包/类
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();
}
示例8: propertyChangeWhenScroll
import android.view.View; //导入方法依赖的package包/类
@Override
protected float propertyChangeWhenScroll(View itemView) {
return itemView.getRotation();
}
示例9: getRotation
import android.view.View; //导入方法依赖的package包/类
public static float getRotation(View view) {
return view.getRotation();
}
示例10: getRotation
import android.view.View; //导入方法依赖的package包/类
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);
}
示例11: get
import android.view.View; //导入方法依赖的package包/类
@Override
public Float get(View target) {
return target.getRotation();
}
示例12: getProperty
import android.view.View; //导入方法依赖的package包/类
@Override
protected float getProperty(View view) {
return view.getRotation();
}