ทางออกของฉันโดยใช้SwitchCompat
และ Kotlin ในสถานการณ์ของฉันฉันจำเป็นต้องตอบสนองต่อการเปลี่ยนแปลงเฉพาะเมื่อผู้ใช้ทริกเกอร์ผ่าน UI ในความเป็นจริงสวิตช์ของฉันตอบสนองต่อ a LiveData
และทำให้ทั้งสองsetOnClickListener
และsetOnCheckedChangeListener
ใช้ไม่ได้ setOnClickListener
ในความเป็นจริงตอบสนองอย่างถูกต้องกับการโต้ตอบของผู้ใช้ แต่จะไม่ถูกกระตุ้นหากผู้ใช้ลากนิ้วหัวแม่มือข้ามสวิตช์setOnCheckedChangeListener
อีกด้านหนึ่งจะถูกเรียกใช้เช่นกันหากสวิตช์ถูกสลับโดยทางโปรแกรม (ตัวอย่างเช่นโดยผู้สังเกตการณ์) ในกรณีของฉันสวิตช์มีอยู่สองแฟรกเมนต์ดังนั้น onRestoreInstanceState จะเรียกใช้ในบางกรณีสวิตช์ที่มีค่าเก่าเขียนทับค่าที่ถูกต้อง
ดังนั้นฉันดูที่รหัสของ SwitchCompat และสามารถเลียนแบบพฤติกรรมได้อย่างประสบความสำเร็จในการแยกคลิกแล้วลากและใช้เพื่อสร้างตัวสร้างแบบสัมผัสที่กำหนดเองซึ่งทำงานได้อย่างที่ควรจะเป็น ไปเลย:
/**
* This function calls the lambda function passed with the right value of isChecked
* when the switch is tapped with single click isChecked is relative to the current position so we pass !isChecked
* when the switch is dragged instead, the position of the thumb centre where the user leaves the
* thumb is compared to the middle of the switch, and we assume that left means false, right means true
* (there is no rtl or vertical switch management)
* The behaviour is extrapolated from the SwitchCompat source code
*/
class SwitchCompatTouchListener(private val v: SwitchCompat, private val lambda: (Boolean)->Unit) : View.OnTouchListener {
companion object {
private const val TOUCH_MODE_IDLE = 0
private const val TOUCH_MODE_DOWN = 1
private const val TOUCH_MODE_DRAGGING = 2
}
private val vc = ViewConfiguration.get(v.context)
private val mScaledTouchSlop = vc.scaledTouchSlop
private var mTouchMode = 0
private var mTouchX = 0f
private var mTouchY = 0f
/**
* @return true if (x, y) is within the target area of the switch thumb
* x,y and rect are in view coordinates, 0,0 is top left of the view
*/
private fun hitThumb(x: Float, y: Float): Boolean {
val rect = v.thumbDrawable.bounds
return x >= rect.left && x <= rect.right && y >= rect.top && y <= rect.bottom
}
override fun onTouch(view: View, event: MotionEvent): Boolean {
if (view == v) {
when (MotionEventCompat.getActionMasked(event)) {
MotionEvent.ACTION_DOWN -> {
val x = event.x
val y = event.y
if (v.isEnabled && hitThumb(x, y)) {
mTouchMode = TOUCH_MODE_DOWN;
mTouchX = x;
mTouchY = y;
}
}
MotionEvent.ACTION_MOVE -> {
val x = event.x
val y = event.y
if (mTouchMode == TOUCH_MODE_DOWN &&
(abs(x - mTouchX) > mScaledTouchSlop || abs(y - mTouchY) > mScaledTouchSlop)
)
mTouchMode = TOUCH_MODE_DRAGGING;
}
MotionEvent.ACTION_UP,
MotionEvent.ACTION_CANCEL -> {
if (mTouchMode == TOUCH_MODE_DRAGGING) {
val r = v.thumbDrawable.bounds
if (r.left + r.right < v.width) lambda(false)
else lambda(true)
} else lambda(!v.isChecked)
mTouchMode = TOUCH_MODE_IDLE;
}
}
}
return v.onTouchEvent(event)
}
}
วิธีใช้งาน:
ฟังสัมผัสที่เกิดขึ้นจริงที่ยอมรับแลมบ์ดากับรหัสในการดำเนินการ:
myswitch.setOnTouchListener(
SwitchCompatTouchListener(myswitch) {
// here goes all the code for your callback, in my case
// i called a service which, when successful, in turn would
// update my liveData
viewModel.sendCommandToMyService(it)
}
)
เพื่อความสมบูรณ์นี่คือสิ่งที่ผู้สังเกตการณ์ของรัฐswitchstate
(ถ้าคุณมี) ดูเหมือนว่า:
switchstate.observe(this, Observer {
myswitch.isChecked = it
})