我在 LinearLayout 中有一个文本视图,宽度设置为匹配父级,重力设置为中心。好吧,这不是在文本视图中居中文本。它使文本的左侧从视图的中心开始。我一直在阅读有关堆栈溢出的一些答案,似乎一切正常。
这里是简单的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@android:color/white"
/>
</LinearLayout>
干杯,