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をしたにもかかわらず、幅の全てを取っていません。コンテンツのサイズだけでなく、サイズをフルサイズにするにはどうすればよいですか?
完璧! fill_parentとmatch_parentの違いは何ですか? –
どちらも同じですが、 'fill_parent'はAPI 8以降償却されています。 –