1

尝试设置我的 TabHost 时,出现异常,原因是:“您的 TabHost 必须有一个 id 属性为 'android.R.id.tabs' 的 TabWidget”

我在我的 xml 文件中恢复到最小选项卡 Host/widget 和 FrameLayout 的示例(使用 android:id="@android:id/tabs" 的 Tabwidget)我尝试清理我的项目,删除我的 R 文件,重新启动 eclipse 和我的机器(OSX Lion,indigo,r20),但此错误不断出现。欢迎任何提示。TIA

这是我的 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="5dp">
    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="5dp" />
</LinearLayout>
</TabHost>
4

0 回答 0