pull/981/head
parent
a22ade97d4
commit
03f9eb1538
@ -1,41 +0,0 @@ |
||||
package io.legado.app.ui.widget.recycler |
||||
|
||||
import android.content.Context |
||||
import android.util.AttributeSet |
||||
import android.view.MotionEvent |
||||
import androidx.recyclerview.widget.RecyclerView |
||||
import kotlin.math.abs |
||||
|
||||
class RecyclerViewAtViewPager2(context: Context, attrs: AttributeSet?) : |
||||
RecyclerView(context, attrs) { |
||||
|
||||
private var startX: Int = 0 |
||||
private var startY: Int = 0 |
||||
|
||||
override fun dispatchTouchEvent(ev: MotionEvent): Boolean { |
||||
when (ev.action) { |
||||
MotionEvent.ACTION_DOWN -> { |
||||
startX = ev.x.toInt() |
||||
startY = ev.y.toInt() |
||||
parent.requestDisallowInterceptTouchEvent(true) |
||||
} |
||||
MotionEvent.ACTION_MOVE -> { |
||||
val endX = ev.x.toInt() |
||||
val endY = ev.y.toInt() |
||||
val disX = abs(endX - startX) |
||||
val disY = abs(endY - startY) |
||||
if (disX > disY) { |
||||
parent.requestDisallowInterceptTouchEvent(canScrollHorizontally(startX - endX)) |
||||
} else { |
||||
parent.requestDisallowInterceptTouchEvent(canScrollVertically(startY - endY)) |
||||
} |
||||
} |
||||
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> parent.requestDisallowInterceptTouchEvent( |
||||
false |
||||
) |
||||
} |
||||
return super.dispatchTouchEvent(ev) |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue