Отображение фрагмента + viewpager в том же макете; никто не появляется - PullRequest
0 голосов
/ 19 февраля 2012

Ниже приведен мой файл макета.Это работает нормально, за исключением того, что когда я включаю оба 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>

1 Ответ

0 голосов
/ 19 февраля 2012

Я немного поиграл с layout_weight, и теперь это исправлено.Спасибо за внимание.

...