我想在调用给定回调时向用户显示 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 并在一秒钟内忽略以后的调用更优雅的方法?