5
ich ein einfaches Layout haben:Textview „fill_parent“ füllt nicht den Eltern
<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>
Aber meine Textview ist nicht die gesamte Breite zu nehmen, selbst wenn ich fill_parent tat. Wie kann ich es mit voller Größe und nicht nur mit der Größe des Inhalts machen?
Oh perfekt! Was ist der Unterschied zwischen fill_parent und match_parent? –
Beide sind gleich, aber 'fill_parent' wurde seit API 8 abgeschrieben. –