我想与 FragmentTabHost 中的片段通信
通讯片段->活动完成!带接口。
但是我无法创建通信 Activity->Fragment 因为我创建了这样的片段:
mTabHost.addTab(
mTabHost.newTabSpec("tab2").setIndicator("Affichage",
getResources().getDrawable(android.R.drawable.star_on)),
MySelectionFragment.class, null);
MySelectionFragment 是一个类而不是像这样的片段new MySelectionFragment()
而且我不知道如何与班级交流:/
提前致谢!