我发现替换片段时速度很慢。
是否有任何事件要获取提交状态,我想知道它是完成提交。
这是我的代码..我想在更改时禁用我的处理栏。
@Override
public void onDrawerClosed(@NonNull View drawerView) {
if (mFragmentToSet != null) {
((ProgressBar)findViewById(R.id.progressBar)).setVisibility(View.VISIBLE);
getSupportFragmentManager()
.beginTransaction()
.replace(R.id.flContent, mFragmentToSet).commit();
((ProgressBar)findViewById(R.id.progressBar)).setVisibility(View.GONE);
mFragmentToSet = null;}