我在这里遇到了与这个问题几乎完全相同的问题:Android, How to restart/refresh a fragment from FragmentActivty?
ListFragment
我正在尝试从 parent调用 a 的方法FragmentActivity
。
但是,我使用的是 Eclipse 生成的模板 Swipe + Fixed Tabs。我尝试调用getSupportFragmentManager().findFragmentById(R.id.myfragment)
但返回值始终为空。我猜这可能是一个问题,因为我没有myfragment
在我的应用程序中定义任何地方。但我不确定在哪里定义它,因为所有片段都是动态创建的。
对于不熟悉 Eclipse 中 Android SDK 生成的 Swipe + Fixed Tabs 模板的人,片段是通过覆盖FragmentPagerAdapter
getItem
函数创建的,返回一个我的片段的新实例。
任何帮助,将不胜感激。
相关代码:我如何设置我的适配器:
mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
// Set up the ViewPager with the sections adapter.
mViewPager = (ViewPager) findViewById(R.id.activity_comment);
mViewPager.setAdapter(mSectionsPagerAdapter);
覆盖适配器 getItem 函数:
@Override
public Fragment getItem(int position) {
// getItem is called to instantiate the fragment for the given page.
// Return a DummySectionFragment (defined as a static inner class
// below) with the page number as its lone argument.
switch(position) {
case 0:
return CommentsFragment.newInstance();
case 1:
default:
return LikesFragment.newInstance();
}
}
newInstance() 函数只是返回它们自己的一个实例,因为我的片段的类是静态的。