0

テーブル レイアウトを表示しようとしています。次のエラーがあります。

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.budget1/com.budget1.Report}: android.view.InflateException: Binary XML file line #2: Error inflating class Tablelayout

私のxmlコードは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<Tablelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent">
    <Tablerow>
 <Textview android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Enter your name">
     </Textview>
    <Edittext android:layout_width="150px" android:layout_height="wrap_content">
        </Edittext>
    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Submit"
    />
    </Tablerow>

 <Tablerow>
 <Textview android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Spanning Two columns" android:layout_span="2">
     </Textview>
    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Cancel"
    />
 </Tablerow>

</Tablelayout>

私を助けてください..

4

3 に答える 3

0

私はあなたのxmlファイルをこのように編集しました、それはうまく機能しています、

   <TableLayout

    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

        <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Enter your name"
                />


        <EditText
                  android:layout_width="150px"
                  android:layout_height="wrap_content"
                />


        <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Submit"
                />
     </TableRow>

    <TableRow

        android:id="@+id/tableRow2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <TextView
                android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:text="Spanning Two columns"
                  android:layout_span="2" />

        <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Cancel"
                />
    </TableRow>

  </TableLayout>
于 2012-07-10T09:58:09.897 に答える