XMLコードを作成しました。ここでEditTextを親の幅に合わせて展開します。あまりにも多くの時間を費やした後、私はEditTextを拡張する方法を見つけることができません。私はここで間違っなぜEditTextがfill_parentに展開されていないのですか
<?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>
を作ったもの:
は、ここに私のXMLです。私を助けてください。
あなたのTableLayoutに
android:stretchColumns="0"
を追加してください、私はそれをmatch_parentするlayout_widthを与えているが、何も変更されません。 – user1462473また、 'maxWidth'と' minWidth'属性も削除してください。 – kcoppock