1

我为我的一个 xml 使用了表格布局

我正在尝试添加一个背景图像,如下所示:

 android:background="@drawable/myimg"

den 我收到了类似的错误

02-28 11:58:57.713: E/AndroidRuntime(850): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.test/com.test.Scan}: android.view.InflateException: Binary XML file line #3: Error inflating class android.widget.TableLayout

我什至试过如下:

 <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/bkg1">

 <TableLayout
            android:id="@+id/linearLayout1_tblLayout1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <TableRow
                android:id="@+id/linearLayout1_tblLayout1_tableRow1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center" >


                ......

               </TableRow>

            </TableLayout>
           </LinearLayout>

然后我也遇到了同样的错误。

请有人帮助我。!

谢谢你。

4

1 回答 1

2

对不起,伙计,这是我的错

我使用的是 jpeg 格式的文件。

当我使用 .png 文件时。

我设法解决了我的问题..

您只能将 .PNG 格式的文件设置为布局

于 2013-03-04T11:14:15.427 回答