我在LinearLayout中有一個textview,寬度設置爲匹配父項,重力設置爲居中。那麼,這不是集中在textview中的文本。它使文本的左側從視圖的中心開始。我一直在閱讀關於堆棧溢出的一些答案,似乎一切正常。textview的重力屬性不是居中文本
在這裏,簡單的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>
乾杯,