Merge pull request #1006 from gongym12138/master
修复上下滑动会导致左右切换问题,添加了新的自定义组件RecyclerViewAtViewPager2pull/1013/head
commit
c22fe1e466
@ -0,0 +1,40 @@ |
||||
package io.legado.app.ui.widget |
||||
|
||||
import android.content.Context |
||||
import androidx.recyclerview.widget.RecyclerView |
||||
import android.util.AttributeSet |
||||
import android.view.MotionEvent |
||||
import kotlin.math.abs |
||||
|
||||
class RecyclerViewAtViewPager2 : RecyclerView { |
||||
constructor(context: Context) : super(context) |
||||
constructor(context: Context, attrs: AttributeSet?) : super(context, attrs) |
||||
constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr) |
||||
|
||||
private var startX = 0 |
||||
private var startY = 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) { |
||||
if (disX > 50) { |
||||
parent.requestDisallowInterceptTouchEvent(false) |
||||
} |
||||
} else { |
||||
parent.requestDisallowInterceptTouchEvent(true) |
||||
} |
||||
} |
||||
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> parent.requestDisallowInterceptTouchEvent(false) |
||||
} |
||||
return super.dispatchTouchEvent(ev) |
||||
} |
||||
} |
Loading…
Reference in new issue