Ich habe einen XML-Code geschrieben, wo ich den EditText erweitern soll, um ihn an die Elternbreite anzupassen. Nach so viel Zeit kann ich keinen Weg finden, den EditText zu erweitern.Warum EditText nicht zu fill_parent expandiert
Hier ist meine XML:
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TableRow
android:layout_marginLeft="10dp"
android:layout_marginBottom="15dip">
<TextView
android:text="Comment"
android:layout_width="match_parent"
android:textStyle="bold"
android:padding="3dip" />
</TableRow>
<TableRow
android:layout_marginLeft="10dp"
android:layout_marginBottom="15dip">
<EditText
android:id="@+id/EditText02"
android:layout_height="wrap_content"
android:lines="5"
android:gravity="top|left"
android:inputType="textMultiLine"
android:scrollHorizontally="false"
android:minWidth="10.0dip"
android:maxWidth="5.0dip"/>
</TableRow>
<TableRow
android:layout_marginLeft="10dp"
android:layout_marginBottom="15dip"
android:gravity="center">
<Button
android:id="@+id/cancel"
android:text="Next" />
</TableRow>
</TableLayout>
</LinearLayout>
, was ich hier falsch gemacht haben. Bitte hilf mir.
ich es eine layout_width gegeben haben match_parent, aber nichts ändert sich. – user1462473
Entfernen Sie auch die Attribute "maxWidth" und "minWidth". – kcoppock