TabHost レイアウトがあります (以下のコード)
<TabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myTabHost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="65dp" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingTop="65dp" >
<LinearLayout
android:id="@+id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
</LinearLayout>
</FrameLayout>
</TabHost>
TabHost 内にいくつかのアクティビティをロードしていますが、アクティビティに関するすべてのことは問題ありません。しかし、私の問題は、Include タグを介して TabHost の上部に別のレイアウトをロードすることです。破損します
。この問題の解き方を教えてください