単純なandroid.support.v4.app.FragmentTabHostのグラフィックレイアウトは、EclipseまたはAndroidStudioのいずれでもレンダリングされません。
私が得るコンソールエラーは一貫して:
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>
ただし、同じエラーが発生します。
タブウィジェットとフレームレイアウトの上または下にビューを追加したかっただけです。
タブのコンテンツを表示することについてはあまり気にしません。レイアウトの残りの部分を見たいだけですが、問題は、がレイアウトに存在する場合、他のビューがレンダリングされない ことです。 android.support.v4.app.FragmentTabHost
私はこの投稿への回答から問題を読んで解決しようとしました:
Android:FragmentTabHostの下部にあるタブ
ですが、それが私の問題ではないと思います。TabWidgetを一番下に配置するつもりはありません。
私のXMLファイルは1つおきに完全に開きます。
同じ問題がAndroidStudioでも発生します。