Today I was changing from ViewPager
to Navigation Component
(with Bottom Navigation View
) on my Android project. The problem is that, when using ViewPager
all is fast as lightning but using Navigation Component
it's very laggy (2 seconds later after you pressed the view appears and specially with RecyclerView
fragments).
Is there any way to pre-load fragments and improve transitions?
Thanks in advance !
MainActivity.java
NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
NavigationUI.setupWithNavController(binding.bottomBar, navController);