我有一个已经从 SherlockActivity 扩展的 Activity 现在我想使用带有支持库的 DialogFragment
FragmentManager fm = getSupportFragmentManager();
HelpDialogFragment testDialog = new HelpDialogFragment();
testDialog.setRetainInstance(true);
testDialog.show(fm, "fragment_name");
但是 getSupportFragmentManager(); 如果我不从 FragmentActivity 扩展,则不能使用,因为 SherlockActivity 我不能。
谁能给我一些指导?