android - xml - 多次包含相同的布局不起作用

时间:2013-06-18 14:41:36

标签: android xml layout include

我试图将以下布局包括两次:

<?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(寻呼机到pager2和指示器)指标2)一切正常。有没有更好的方法呢?复制布局以实现这似乎使得包含无用的多个包括相同的布局....

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

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

如果我复制布局,一切都很完美......

修改

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

1 个答案:

答案 0 :(得分:2)

是的,可以做到。您可以多次膨胀布局,但必须以编程方式进行包含。请参阅answer同类问题。