android-bottomnav
How to remove icon animation for bottom navigation view in android
got answer from this thread. To remove animation or shift mode. Implementation of BottomNavigationView has condition: when there is more than 3 items then use shift mode. Create helper class import android.support.design.internal.BottomNavigationItemView; import android.support.design.internal.BottomNavigationMenuView; import android.support.design.widget.BottomNavigationView; import android.util.Log; import java.lang.reflect.Field; public class BottomNavigationViewHelper { public static void disableShiftMode(BottomNavigationView view) { BottomNavigationMenuView menuView = (BottomNavigationMenuView) view.getChildAt(0); … Read more