CollapsingToolbarLayout 伸缩出现crash

查看log

A/art: art/runtime/check_jni.cc:65] JNI DETECTED ERROR IN APPLICATION: can't call void android.view.View.setElevation(float) on null object

解决方法

android:stateListAnimator="@null"

但是toolbar没有阴影了, 经调查此bug只出现在API21上,所以在代码中判断SDK版本即可

if (Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP) {
       appBar.setStateListAnimator(null);
}

你可能感兴趣的:(CollapsingToolbarLayout 伸缩出现crash)