知道为什么没有显示互动fragment
的布局。问题是,我有两个fragments
" sub"和"酒吧"并且每个人都有自己的布局。首先,我设计了fragment
" sub"的布局。并且在扩展fragment
的" sub"的课程中,我夸大了view
" sub"活动thelayout of" sub"。在运行时,我发现actionTab
" sub"没有view
且我为其设计的view
显示在fragment
" pub"。
更新"已添加代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.messagin_activity_layout);
mViewPager = (ViewPager) findViewById(R.id.pager);
mActionBar = getActionBar();
mActionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
List<Fragment> mFragList = new ArrayList<Fragment>();
mFragList.add(new Pub_Frag());
mFragList.add(new Sub_Frag());
代码_&#34; sub_Frag&#34;
public class Sub_Frag extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
// TODO Auto-generated method stub
View v = inflater.inflate(R.layout.sub_frag_layout, container, false);
EditText et_topic = (EditText) v.findViewById(R.id.et_topic);
return v;
}
}
答案 0 :(得分:1)
我认为,将您的网址添加到ArrayList
,&#34;如果您正在使用它&#34;的顺序很重要。
确保按照您为fragments
分配的同一顺序添加arraylist
actiontab