早上好,我可以在相对布局中放置标签而不出错吗?我无法让它工作。放置代码和图像是我想要得到的(tabhost上方的webview,它必须在按钮下)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button1"
android:layout_width="100px"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="-" />
<Button
android:id="@+id/button2"
android:layout_width="100px"
android:layout_height="wrap_content"
android:layout_above="@+id/webView1"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/button1"
android:text="+" />
<TabHost
android:id="@+id/tabHost"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_below="@+id/button1"
android:layout_centerHorizontal="true" />
<FrameLayout android:layout_width="wrap_content"
android:layout_height = "wrap_content"
android:id= "@android:id/tabcontent">
<LinearLayout
android:id="@+id/tabX1"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="500px"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/tabX2"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
</FrameLayout>
<TabWidget android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height ="wrap_content">
</TabWidget>
</TabHost>
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/button2"
android:ems="10" >
<requestFocus />
</EditText>
</RelativeLayout>
</LinearLayout>
编辑
这是错误:
"" 未设置所需的 layout_width 属性:(1) 设置为 "wrap_content" (2) 设置为 "match_parent" "" 未设置所需的 layout_height 属性:(1) 设置为 "wrap_content" (2) 设置为 " match_parent" "" 未设置所需的 layout_width 属性:(1) 设置为 "wrap_content" (2) 设置为 "match_parent" "" 未设置所需的 layout_height 属性:(1) 设置为 "wrap_content" (2) 设置到“match_parent”TabHost 需要一个 ID 为“android:id/tabs”的 TabWidget。
您必须提供 layout_width 属性。您必须提供 layout_height 属性。异常详细信息记录在窗口 > 显示视图 > 错误日志中