使用bottomnavigation避免片段重新加载

yhqotfr8  于 2021-07-03  发布在  Java
关注(0)|答案(0)|浏览(229)

我想避免在切换 BottomNavigationView . 我真的不知道怎么做。原因是当我在标签1和标签2之间切换时,手机的延迟太大。

BottomNavigationView navView = findViewById(R.id.nav_view);

AppBarConfiguration appBarConfiguration = new AppBarConfiguration.Builder(
        R.id.navigation_home, R.id.navigation_dashboard, R.id.navigation_notifications)
        .build();
NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
NavigationUI.setupActionBarWithNavController(this, navController, appBarConfiguration);
NavigationUI.setupWithNavController(navView, navController);

谢谢你的帮助。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题