美文网首页
CollapsingToolbarLayout 伸缩出现cras

CollapsingToolbarLayout 伸缩出现cras

作者: 沐_Andorid开发者 | 来源:发表于2018-05-10 16:01 被阅读0次

    查看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 伸缩出现cras

          本文链接:https://www.haomeiwen.com/subject/ovazrftx.html