カスタム背景を持つ TextView を作成したいと考えています。特に、このようなテキスト ビューが必要です。背景を TextView に設定できることは知っていandroid:background="@drawable/displaybackground
ますが、このテキストビューでテキストを整列するにはどうすればよいですか。上の画像のように、テキストは Textview の中央に表示されます。
敬具
カスタム背景を持つ TextView を作成したいと考えています。特に、このようなテキスト ビューが必要です。背景を TextView に設定できることは知っていandroid:background="@drawable/displaybackground
ますが、このテキストビューでテキストを整列するにはどうすればよいですか。上の画像のように、テキストは Textview の中央に表示されます。
敬具
( ではなく) TextView のプロパティに使用center
します。gravity
layout_gravity
はい、どうぞ。好きな背景を見つけるだけです。
<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)