- Вы пробовали
StateListAnimator
.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
StateListAnimator stateListAnimator = new StateListAnimator();
stateListAnimator.addState(new int[0], ObjectAnimator.ofFloat(appBarLayout, "elevation", 0.1f));
appBarLayout.setStateListAnimator(stateListAnimator);
}
OR
- Попробуйте установить фон
android:background="@android:color/white"
android:elevation="10dp"
Надеюсь, что это работает!