简单的 android.support.v4.app.FragmentTabHost 的图形布局永远不会在 Eclipse 或 Android Studio 中呈现。
我得到的控制台错误始终如一:
Exception raised during rendering: No tab known for tag null
我正在使用最基本的 XML 文件:
<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"/>
<FrameLayout
android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
</android.support.v4.app.FragmentTabHost>
但同样的错误发生。
我只是想在选项卡小部件和框架布局上方或下方添加更多视图。
我不太关心看到标签内容;我只想看看我的布局的其余部分-但问题是当 a驻留在布局中时不会呈现其他视图 。 android.support.v4.app.FragmentTabHost
我已阅读并尝试从这篇文章的答案中解决问题:
Android: Tabs at the bottom with FragmentTabHost
但我不认为那是我的问题;我不想在底部放置一个 TabWidget。
我的每个其他 XML 文件都可以完美打开。
Android Studio 中也会出现同样的问题: