我正在尝试显示表格布局。我有以下错误:
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>
请帮我..