You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It currently intercepts all touch events in a nested scrollview. This is difficult to configure since setNestedScrollingEnabled is ignored, when calling this method the value should also be set for the inner RecyclerView.
Temporary workaround using reflection:
val field = bottom_bar.javaClass.getDeclaredField("recycler")
field.isAccessible =trueval recycler = field.get(bottom_bar) asRecyclerView
recycler.isNestedScrollingEnabled =false
The text was updated successfully, but these errors were encountered:
It currently intercepts all touch events in a nested scrollview. This is difficult to configure since
setNestedScrollingEnabled
is ignored, when calling this method the value should also be set for the innerRecyclerView
.Temporary workaround using reflection:
The text was updated successfully, but these errors were encountered: