9

カスタム背景を持つ TextView を作成したいと考えています。特に、このようなテキスト ビューが必要です。背景を TextView に設定できることは知っていandroid:background="@drawable/displaybackgroundますが、このテキストビューでテキストを整列するにはどうすればよいですか。上の画像のように、テキストは Textview の中央に表示されます。

敬具

4

3 に答える 3

31

( ではなく) TextView のプロパティに使用centerします。gravitylayout_gravity

于 2013-09-13T13:30:32.677 に答える
4

はい、どうぞ。好きな背景を見つけるだけです。

<Textview
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:gravity="center_vertical|center_horizontal" //center the text horizontally, and vertically
    android:text="You place your text here..." // Text inside the TextView
    android:background="background Here"/> // Background (drawable or color)
于 2013-09-13T13:31:04.493 に答える
0

そのための以下のリンクを見つけてください:

AndroidのTextViewでテキストを水平方向および垂直方向に中央揃えにするにはどうすればよいですか?

幸運を :)

于 2013-09-13T13:28:49.443 に答える