我有一个已经从SherlockActivity扩展的Activity 现在我想使用带支持库的DialogFragment
FragmentManager fm = getSupportFragmentManager();
HelpDialogFragment testDialog = new HelpDialogFragment();
testDialog.setRetainInstance(true);
testDialog.show(fm, "fragment_name");
但getSupportFragmentManager();如果我没有从FragmentActivity扩展而无法使用,那么我无法使用SherlockActivity 谁可以给我一些指示?
答案 0 :(得分:0)
您需要从SherlockFragmentActivity扩展您的活动,从SherlockFragment扩展您的片段,从SherlockDialogFragment扩展您的DialogFragments