我有简单的TextView
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:rotation="45"
android:text="Simple text" />
在Android 2.2.2上,文字不能旋转到45度。
我看到了不同的主题,但每个人都在做动画。我不想动画。我想要的只是旋转文本视图。
答案 0 :(得分:17)
在android中任何新视图都有一个名为setRotation(float)的方法,你可以使用它
textview.setRotation(float);
但请注意,此方法已在API级别11中添加
所以如果你想支持它,你可以使用这个
if (Build.VERSION.SDK_INT < 11) {
RotateAnimation animation = new RotateAnimation(oldAngel, newAngel);
animation.setDuration(100);
animation.setFillAfter(true);
textview.startAnimation(animation);
} else {
textview.setRotation(progress);
}
答案 1 :(得分:5)
像这样创建自定义TextView
public class VerticalTextView extends TextView{
final boolean topDown;
public VerticalTextView(Context context, AttributeSet attrs){
super(context, attrs);
final int gravity = getGravity();
if(Gravity.isVertical(gravity) && (gravity&Gravity.VERTICAL_GRAVITY_MASK) == Gravity.BOTTOM) {
setGravity((gravity&Gravity.HORIZONTAL_GRAVITY_MASK) | Gravity.TOP);
topDown = false;
}else
topDown = true;
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
super.onMeasure(heightMeasureSpec, widthMeasureSpec);
setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth());
}
@Override
protected boolean setFrame(int l, int t, int r, int b){
return super.setFrame(l, t, l+(b-t), t+(r-l));
}
@Override
public void draw(Canvas canvas){
if(topDown){
canvas.translate(getHeight(), 0);
canvas.rotate(90);
}else {
canvas.translate(0, getWidth());
canvas.rotate(-90);
}
canvas.clipRect(0, 0, getWidth(), getHeight(), android.graphics.Region.Op.REPLACE);
super.draw(canvas);
}
}
并使用canvas.rotate(90)
,其中90
是旋转角度。
答案 2 :(得分:3)
我发现“android:rotation”在SDK 21中不起作用,换句话说就是Android 5.0。但我刚刚在布局预览中发现了这个问题,而不是在真正的设备中进行测试。