0
以下は私のレイアウトファイルです。 foofragmentとfoo_pagerの両方を含めると表示されます(どれが最初に追加されたかに基づいています;次の場合はfoofragmentのみが表示されますがfoo_pagerは表示されません)。私はここで何が欠けていますか?同じレイアウト内にfragment + viewpagerを表示しています。 1つは表示されません
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/linearLayout1"
android:layout_column="0"
android:layout_gravity="fill_horizontal"
android:layout_row="0"
android:orientation="vertical" >
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<fragment class="view.foofragment"
android:id="@+id/foo_frag"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.v4.view.ViewPager
android:id="@+id/foo_pager"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="wrap_content" />
</LinearLayout>