我试图将以下布局包括两次:
<?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 ...但我不知道如何正确解决...