内容简介:我试图将以下布局包括两次:如下实际上,如果我这样做,第二个视图寻呼机不起作用…第二个视图寻呼机总是保持空…如果我复制我的view_pager布局并更改此布局中的ID(寻呼机到pager2和指示器到指示器2)一切正常.有没有更好的方法呢?复制布局以实现这似乎使包含无用的多个包括相同的布局….
我试图将以下布局包括两次:
<?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 …但我不知道如何正确解决…
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- css经典布局系列三——三列布局(圣杯布局、双飞翼布局)
- 四种方法实现──三栏布局(圣杯布局、双飞翼布局)
- 浅谈CSS三栏布局(包括双飞翼布局和圣杯布局)
- css经典布局——圣杯布局
- CSS布局基础——(三栏布局)
- Grid布局 - 一键布局尝试总结~
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。