youlookwhat / ByRecyclerView

🔥 RecyclerView 下拉刷新、上拉松手/自动加载更多、item点击/长按、item局部刷新、头布局/尾布局/状态布局、万能分割线、Skeleton骨架图、极简adapter、嵌套滑动置顶
https://youlookwhat.github.io/ByRecyclerView
Apache License 2.0
798 stars 139 forks source link

HookedScroller android11问题 #48

Closed Lancerer closed 2 years ago

Lancerer commented 2 years ago

HookedScroller这个类中的durationField属性,在android11使用时报错反射问题:Caused by: java.lang.reflect.InvocationTargetException

youlookwhat commented 2 years ago

能具体描述下怎么使用的,还有机型吗,我好复现下。我用oppo的android11手机还没发现问题

Lancerer commented 2 years ago

你把你的demo的compileSdkVersion 和targetSdkVersion改成30,然后用11手机试试 CoordinatorLayout 嵌套滑动置顶这个activity,直接奔溃

youlookwhat commented 2 years ago

好的 我试试,麻烦了

youlookwhat commented 2 years ago

不好意思,有点久了。 有3个方案可以解决你的问题: 1、targetSdkVersion 在30以下。因为HookedScroller反射失败 2、集成三方库:FreeReflection。需要minSdkVersion 21 3、现已经对代码做了容错处理,你可以照里面修正下。然后demo也给了原始版本,你可以体验下。不过这个没有[滑动头部布局不置顶]了

相关代码:HookedScroller.kt

youlookwhat commented 2 years ago

有问题再提哈~