我想知道如何在不使用任何類文件的情況下居中TextView。如何居中TextView?
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="APW" />
我想知道如何在不使用任何類文件的情況下居中TextView。如何居中TextView?
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="APW" />
如果如果要居中相對於文本視圖中的文本:
android:gravity="center"
如果你想中心textview相對於父佈局:
android:layout_gravity="center"
感謝所有的答案,但我已經從第一個答案抱歉 – apw2012
class files?使用'android:gravity =「center」' –