mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-09 05:25:08 +01:00
Fixes to fast scroller
Using android back gesture no longer sometimes jump the screen Fix issue when sometimes dragging fastscroll tries to drag to the top on release
This commit is contained in:
parent
0327accecb
commit
bc760cf7b1
@ -9,6 +9,7 @@ import androidx.recyclerview.widget.RecyclerView
|
||||
import androidx.recyclerview.widget.StaggeredGridLayoutManager
|
||||
import eu.davidea.fastscroller.FastScroller
|
||||
import eu.kanade.tachiyomi.R
|
||||
import eu.kanade.tachiyomi.util.system.dpToPx
|
||||
import eu.kanade.tachiyomi.util.system.dpToPxEnd
|
||||
import eu.kanade.tachiyomi.util.view.marginTop
|
||||
import kotlin.math.abs
|
||||
@ -53,7 +54,7 @@ class MaterialFastScroll @JvmOverloads constructor(context: Context, attrs: Attr
|
||||
}
|
||||
MotionEvent.ACTION_MOVE -> {
|
||||
val y = event.y
|
||||
if (!canScroll && abs(y - startY) > 10) {
|
||||
if (!canScroll && abs(y - startY) > 15.dpToPx) {
|
||||
canScroll = true
|
||||
handle.isSelected = true
|
||||
notifyScrollStateChange(true)
|
||||
@ -69,6 +70,22 @@ class MaterialFastScroll @JvmOverloads constructor(context: Context, attrs: Attr
|
||||
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> {
|
||||
startY = 0f
|
||||
canScroll = false
|
||||
val newEvent = MotionEvent.obtain(event)
|
||||
recyclerView.post {
|
||||
// Mimic touch event for recycler so it doesn't scroll back
|
||||
val lastTag = recyclerView.tag
|
||||
recyclerView.tag = noUpdate
|
||||
newEvent.action = MotionEvent.ACTION_MOVE
|
||||
recyclerView.dispatchTouchEvent(newEvent)
|
||||
val newEvent2 = MotionEvent.obtain(newEvent)
|
||||
newEvent2.action = MotionEvent.ACTION_CANCEL
|
||||
recyclerView.dispatchTouchEvent(newEvent2)
|
||||
newEvent2.recycle()
|
||||
newEvent.recycle()
|
||||
recyclerView.post {
|
||||
recyclerView.tag = lastTag
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return super.onTouchEvent(event)
|
||||
@ -91,7 +108,10 @@ class MaterialFastScroll @JvmOverloads constructor(context: Context, attrs: Attr
|
||||
scrollOffset
|
||||
)
|
||||
} else {
|
||||
(layoutManager as LinearLayoutManager).scrollToPositionWithOffset(targetPos, scrollOffset)
|
||||
(layoutManager as LinearLayoutManager).scrollToPositionWithOffset(
|
||||
targetPos,
|
||||
scrollOffset
|
||||
)
|
||||
}
|
||||
updateBubbleText(targetPos)
|
||||
}
|
||||
@ -114,4 +134,8 @@ class MaterialFastScroll @JvmOverloads constructor(context: Context, attrs: Attr
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
companion object {
|
||||
const val noUpdate = "don't update scroll"
|
||||
}
|
||||
}
|
||||
|
@ -219,6 +219,7 @@ class LibraryController(
|
||||
private var scrollListener = object : RecyclerView.OnScrollListener() {
|
||||
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
|
||||
super.onScrolled(recyclerView, dx, dy)
|
||||
if (recyclerView.tag == MaterialFastScroll.noUpdate) return
|
||||
val recyclerCover = binding.recyclerCover
|
||||
if (!recyclerCover.isClickable && isAnimatingHopper != true) {
|
||||
if (preferences.autohideHopper().get()) {
|
||||
|
@ -251,6 +251,7 @@ fun Controller.scrollViewWith(
|
||||
object : RecyclerView.OnScrollListener() {
|
||||
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
|
||||
super.onScrolled(recyclerView, dx, dy)
|
||||
if (recyclerView.tag == MaterialFastScroll.noUpdate) return
|
||||
if (router?.backstack?.lastOrNull()
|
||||
?.controller() == this@scrollViewWith && statusBarHeight > -1 &&
|
||||
activity != null && activityBinding!!.appBar.height > 0 &&
|
||||
|
Loading…
Reference in New Issue
Block a user