在“滑动”选项卡操作栏中启动新片段

时间:2016-07-17 08:15:59

标签: android

我正在使用滑动标签操作栏构建我的应用。我设法建立了这个,但是当用户从某个标签中按某个东西时,我需要开始一个新的片段,任何人都可以帮助我,我该怎么办?

1 个答案:

答案 0 :(得分:0)

当你在一个片段

以下代码是您所需要的!

YourFragment openfragment= new YourFragment();
this.getFragmentManager().beginTransaction()
.replace(R.id.Layout_container, openfragment,TAG_FRAGMENT)
.addToBackStack(null)
.commit();