テキストビューを-90度に設定したいので、このように表示する必要があります。単一の線形レイアウトで8つのテキストビューを表示する必要があります。回転することはできますが、テキストビューが1つしか表示されません。例を教えてください。
前もって感謝します。
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();
}
}