5

記入していません:のTextView「fill_parent」私はシンプルなレイアウトを持つ親

<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> 

をしかし、私のTextViewには、私はfill_parentをしたにもかかわらず、幅の全てを取っていません。コンテンツのサイズだけでなく、サイズをフルサイズにするにはどうすればよいですか?

答えて

7

属性android:layout_widthandroid:layout_heightmatch_parent代わりのwrap_contentを持って外LinearLayoutしてください。

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

完璧! fill_parentとmatch_parentの違いは何ですか? –

+2

どちらも同じですが、 'fill_parent'はAPI 8以降償却されています。 –

関連する問題