1
我已經使用表格佈局我的一個XML設置背景圖片
我試圖添加一個背景圖片如下:像
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
android:background="@drawable/myimg"
書房我收到錯誤
我甚至嘗試過如下:
<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>
然後我也越來越一樣的錯誤。
請有人幫我。
謝謝。
我注意到一兩件事,我不能夠以我的背景設置爲任何佈局通過使用android:background =「@ drawable/myimg」 我得到同樣的錯誤。 – 2013-02-28 09:30:29