使用TabHost提示 Your content must have a TabHost whose id attribute is ‘android.R.id.tabhost’ 或者 Your TabHost must have a TabWidget whose id attribute is ‘android.R.id.tabs’ 等错误信息时。
- 改下TabHost的id。使用
android:id="@android:id/tabhost"
,不要使用android:id="@+id/tabhost"
。 - 给TabWidget加id。
android:id="@android:id/tabs"
。 - 给FrameLayout加上id。
android:id="@android:id/tabcontent"
。