以下是我的布局文件。它工作得很好,除了当我同时包含foofragment和foo_pager时,只有其中一个显示出来(基于你首先添加的那个;在下面的例子中,只显示foofragment但不显示foo_pager)。我在这里缺少什么?
<?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>
答案 0 :(得分:0)
我稍微使用了layout_weight,现在已修复了。感谢您对此进行调查。