我想创建一个具有自定义背景的TextView。
特别是我希望有一个看起来像this的文本视图。
我知道我可以使用android:background="@drawable/displaybackground
为TextView设置背景,但是如何在此textview中对齐文本。文本应显示在Textview的中心,如上图所示。
亲切的问候
答案 0 :(得分:25)
将center
用于TextView中的gravity
属性(而不是layout_gravity
)。
答案 1 :(得分:3)
你在这里。 你只需要找到你喜欢的背景。
<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)
答案 2 :(得分:0)