5

我有一个简单的布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

但是即使我做了 fill_parent,我的 TextView 也没有占用所有的宽度。我怎样才能使它具有全尺寸,而不仅仅是内容的大小?

4

1 回答 1

7

使外部LinearLayout具有match_parent而不是wrap_content在属性中android:layout_widthandroid:layout_height

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
于 2013-09-06T14:33:34.333 回答