8

以下のようにビューに文字列を縦に表示したいのですが、レイアウトXMLファイルで実装する方法はありますか?

ここに画像の説明を入力

4

2 に答える 2

1

テキスト ビュー android:rotation="-90" に属性を追加する

    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:rotation="-90"
    android:text="Hello World!" />
于 2016-09-14T11:49:47.023 に答える