我想将我的文本视图设置为 -90 度,这意味着我必须像这样展示它!我必须在单个线性布局中显示 8 个文本视图。我可以旋转,但我只能看到一个文本视图。请任何人帮我举个例子。
提前致谢。
public class AngledTextView extends TextView
{
public AngledTextView(Context context, AttributeSet attrs)
{
super(context, attrs);
}
@Override
protected void onDraw(Canvas canvas)
{ // Save the current matrix
canvas.save();
// Rotate this View at its center
canvas.rotate(270,this.getWidth()/2, this.getHeight() /2);
// Draw it
super.onDraw(canvas);
// Restore to the previous matrix
canvas.restore();
}
}