在不剪切文本的情况下旋转TextView

时间:2011-09-26 09:06:19

标签: android

我正在尝试旋转TextView,但我的文字被界限切断了。但文本是旋转的。 我没有将它用于动画或某种类型。它只是静态的,设计明智的:)

我有一个RotatedTextView,我这样做:

public class RotatedTextView extends TextView
@Override
public void onDraw(Canvas canvas)
{
    canvas.save(); 
    float py = this.getHeight()/2.0f;
    float px = this.getWidth()/2.0f;
    px = py = 0;
    canvas.rotate(this.degrees, px, py); 
    super.onDraw(canvas); 
    canvas.restore(); 
}

以下是它现在的样子:

enter image description here

Orginial source

有人可以帮我解决这个问题吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

尝试在textview中添加填充。这应该使画布保持在界限内。或者您可能需要相应地设置视图的高度。