因为我一直在使用我的代码,所以我使用了片段。
为此,我有一个活动使用片段标记调用片段:
FluxListFragment FLF = (FluxListFragment) getFragmentManager().findFragmentByTag(FRAG_LIST);
但从今天开始,getFragmentManager似乎无法识别。它说:
"The method getFragmentManager() is undefined for the type FluxMainActivity"
问题是来自构建目标吗? (我把Android 3.0)
以下是代码:
public Class FluxMainActivity extends Activity {
@override
public void onCreate(Bundle saveInstanceState)
{
super.onCreate();
setContentView(R.layout.main);
FluxListeFragment FLF = (FluxListeFragment)getFragmentManager().findFragmentByTag(FRAG_LISTE);
}
}
该方法应链接到FluxListeFragment而不是FluxMainActivity!我认为演员阵容不正确。
答案 0 :(得分:5)
问题解决了。
项目目标在API 11中,但它包含2个库,其中一个在目标API 8中。