4

我想在调用给定回调时向用户显示 DialogFragment。我的问题是有时同时对侦听器进行多次调用,并且片段管理器显示多个片段,我正在使用以下代码

    if (getSupportFragmentManager().findFragmentByTag("testFragment") == null) {
        getSupportFragmentManager().beginTransaction()
                .add(new MyFragment(), "testFragment")
                .commit();
        Log.e("TAG", "Show! "+(getSupportFragmentManager()
                    .findFragmentByTag("testFragment") == null));
    } 

正如最后一行中的日志消息所示,在提交 FragmentTransaction 后,findFragmentByTag 会在短时间内返回 null。那么,是否有某种方法可以确保只显示一次比保存最后一次提交调用的 mili-time 并在一秒钟内忽略以后的调用更优雅的方法?

4

1 回答 1

12

在提交后立即调用getSupportFragmentManager().executePendingTransactions()应该强制片段管理器立即提交片段,以便后续调用findFragmentByTag("testFragment")不应再返回 null。

于 2012-09-10T16:04:22.403 回答