片段变得可见时的监听器

时间:2013-05-16 17:59:45

标签: android android-fragments actionbarsherlock

我疯狂地试图让一个选项菜单为不同的视图提供不同的选项。

,如果在我的片段上调用onResume(),我可以使用它

我有一个SherlockFragmentActivity,在onCreate中添加了一个像这样的SherlockFragment:

if (getSupportFragmentManager().findFragmentById(android.R.id.content) == null) {
            Fragment f = LoginFragment.newInstance();

            getSupportFragmentManager()
                    .beginTransaction()
                    .add(android.R.id.content, f, "loginfragment")
                    .attach(f)
                    .commit();
        }

最终使用相同的方法在其上添加另一个SherlockFragment:

Fragment f = OfferListFragment.newInstance();
        getActivity().getSupportFragmentManager()
                .beginTransaction()
                .add(android.R.id.content, f, "offerList")
                .addToBackStack(f.getClass().getSimpleName())
                .commit();

最后,使用该方法在顶部启动另一个SherlockFragment:

AddOfferFragment newFragment = AddOfferFragment.newInstance(offer);

        getActivity()
                .getSupportFragmentManager()
                .beginTransaction()
                .add(android.R.id.content, newFragment, "addofferdialog")
                .addToBackStack(newFragment.getClass().getSimpleName())
                .commit();

我添加了onResume()事件,如下所示:

@Override
    public void onResume() {
        Log.e(TAG, "onResume");
        super.onResume();
    }

现在我看到onResume logs when they are created, but when I press返回from any of them, I don't get the onResume` log's。我的一个选择是退出,它会解除所有这样的观点:

FragmentManager fm = getSupportFragmentManager();

        if (fm.getBackStackEntryCount() > 0) {
            fm.popBackStack(fm.getBackStackEntryAt(0).getName(), FragmentManager.POP_BACK_STACK_INCLUSIVE);
        }

但我甚至没有在第一个片段上获得onResume。

由于另一个问题我对片段是透明的here(这可能是正常行为,我不确定)。 我想知道我添加碎片的方式是否错误?

如果没有,还有什么可能是问题?

1 个答案:

答案 0 :(得分:-1)

正如JonasSeputis和OP自己所指出的,解决方案是将transaction.add()更改为transaction.replace()

The detailed solution is here.