我有一个简单的布局:
<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也没有占用所有的宽度。如何使用完整尺寸而不仅仅是内容的大小?
答案 0 :(得分:7)
在LinearLayout
和match_parent
属性中,让wrap_content
外android:layout_width
代替android: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" >