我正在尝试检索FragmentManager
以显示我Fragment
的如下:
def fragmentManager = competitionSetupDialogFragment.getFragmentManager()
然后我尝试使用以下内容显示它:
competitionSetupDialogFragment.show(fragmentManager, HomeScreenActivity.CompetitionDialog)
我competitionSetupDialogFragment
的定义如下:
class CompetitionSetupDialogFragment() extends DialogFragment {
但是,当上面尝试显示时,我的fragmentManager
变量为空。
我无法扩展 a FragmentActivity
,因为我已经RoboActivity
为 RoboGuice 依赖注入扩展了 a。我的 Android 目标 API 版本是 15,所以我认为我的方法应该可行。有谁知道我的问题是什么?
(我正在尝试使用 Scala 进行开发)