(` bottomNavigationView = (BottomNavigationView) findViewById(R.id.bottom_navigation); bottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() { @Override public boolean onNavigationItemSelected(@NonNull MenuItem item) { switch (item.getItemId()) { case R.id.select1: break; case R.id.statistic: Intent a = new Intent(MainActivity.this, Records.class); startActivity(a); break; } ` I have already created activities earlier, but I want to call them through Bottom Navigation. But the transition is sharp. It turns out. How to do it smoothly, like for example on Instagram
