8

我试图两次包含以下布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<com.viewpagerindicator.TabPageIndicator
    android:id="@+id/indicator"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

<android.support.v4.view.ViewPager
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

像下面这样

<include
    android:id="@+id/include1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    layout="@layout/view_pager" />

<include
    android:id="@+id/include2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    layout="@layout/view_pager" />

实际上,如果我这样做,第二个视图寻呼机将不起作用...第二个视图寻呼机始终保持空白...如果我复制我的 view_pager 布局并更改此布局中的 id(pager 到 pager2,indicator 到 indicator2)一切正常。有没有更好的方法来做到这一点?复制布局以实现这一点似乎使包含对于同一布局的多个包含无用....

我认为我得到了正确的参考,但如果我包含相同的布局,它就不起作用......

pager1= (ViewPager)(findViewById(R.id.include1).findViewById(R.id.pager));
pager2= (ViewPager)(findViewById(R.id.include2).findViewById(R.id.pager));

如果我复制布局,一切都会完美运行......

编辑:

我认为这与 FragmentManager 有关,因为视图寻呼机具有相同的 id ......但我不知道如何正确解决这个问题......

4

1 回答 1

2

是的,它可以做到。您可以多次扩展布局,但您必须以编程方式进行包含。查看同类问题的答案。

于 2013-08-05T21:14:26.953 回答