查看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);
}
网友评论