How to detect AppBar is collapse or expand
AppBarLayout appBarLayout = (AppBarLayout) view.findViewById(R.id.app_bar_layout); appBarLayout.addOnOffsetChangedListener(this); — @Override public void onOffsetChanged(AppBarLayout appBarLayout, int offset) { if (offset == 0) {…