我是android的新手。在我的应用程序中,我创建了3个按钮和一些文本视图,并在表格布局中编辑文本。我想用菜单替换按钮。为此,我试图插入一个带有菜单的新表行,而不删除按钮。然后它显示致命异常。我尝试更换按钮。但致命异常来了。我想插入新表行时出现问题。我的XML文件出了什么问题?
这是我的XML文件
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#eef1f5"
android1:scrollbars="horizontal|vertical" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<TableRow>
<menu >
<item android:id="@+id/bb"
android:title="show"/>
<item android:id="@+id/help"
android:title="help" />
</menu>
</TableRow>
<TableRow >
<Button
android:id="@+id/b3 "
android:layout_height="wrap_content"
android:text="Connect"
android:layout_width="0dip"
android:layout_weight="1"/>
<Button
android1:id="@+id/b1 "
android1:layout_width="0dip"
android1:layout_height="wrap_content"
android1:layout_weight="1"
android1:text="Retrieve Data" />`
<Button
android:id="@+id/b2 "
android:layout_height="wrap_content"
android:text="Close"
android:layout_width="0dip"
android:layout_weight="1" />
</TableRow>
<TableRow>
<TextView
android:id="@+id/systemId"
android:layout_height="wrap_content"
android:text="SysId"
android:layout_width="0dip"
android:layout_weight="1" >
</TextView>
<EditText
android:id="@+id/systemId1"
android:layout_height="wrap_content"
android:enabled="false"
android:layout_width="0dip"
android:layout_weight="1.1"
/>
<TextView
android:id="@+id/opMode"
android:layout_height="wrap_content"
android:text="Model"
android:layout_width="0dip"
android:layout_weight="1">
</TextView>
<EditText
android:id="@+id/opMode1"
android:layout_height="wrap_content"
android:enabled="false"
android:layout_width="0dip"
android:layout_weight="1.1"
/>
<TextView
android:id="@+id/DCTime"
android:layout_height="wrap_content"
android:text="DCTimer"
android:layout_width="0dip"
android:layout_weight="1">
</TextView>
<EditText
android:id="@+id/DCTime1"
android:layout_height="wrap_content"
android:enabled="false"
android:layout_width="0dip"
android:layout_weight="1.1"
/>
</TableRow>
</TableLayout>
</ScrollView>
答案 0 :(得分:0)
<menu>
不是<TableRow>