我想创建一个具有自定义背景的 TextView。特别是我想要一个看起来像这样的文本视图。我知道我可以为 TextView 设置背景,android:background="@drawable/displaybackground
但我如何在这个 textview 中对齐文本。文本应显示在 Textview 的中心,如上图所示。
亲切的问候
我想创建一个具有自定义背景的 TextView。特别是我想要一个看起来像这样的文本视图。我知道我可以为 TextView 设置背景,android:background="@drawable/displaybackground
但我如何在这个 textview 中对齐文本。文本应显示在 Textview 的中心,如上图所示。
亲切的问候
用于TextViewcenter
中的属性(不是)。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)