คำตอบทั้งหมดข้างต้นถูกต้อง แต่ผลลัพธ์จะแตกต่างกันคือหาก View เป็นclickable
หรือไม่clickable
ตัวอย่างฉันLinearLayout
มี 1 Button
และ 1 TextView
แบบนี้
<LinearLayout
android:id="@+id/linearlayout_root"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0aa"
android:orientation="vertical">
<Button
android:id="@+id/button_click"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="40dp"
android:text="Button Click"
android:textSize="20sp" />
<TextView
android:id="@+id/textview_click"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="40dp"
android:text="TextView Click"
android:textSize="20sp"
android:background="#e4e4e4"
/>
</LinearLayout>
ในกิจกรรมฉันมีรหัสเช่น
class MainActivity : AppCompatActivity() {
val TAG = "TAG"
@SuppressLint("ClickableViewAccessibility")
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
findViewById<LinearLayout>(R.id.linearlayout_root).setOnTouchListener { v, event ->
Log.i(TAG, "LinearLayout onTouch event " + getDisplayAction(event.action))
false
}
findViewById<Button>(R.id.button_click).setOnTouchListener { v, event ->
Log.i(TAG, "Button onTouch event " + getDisplayAction(event.action))
false
}
findViewById<TextView>(R.id.textview_click).setOnTouchListener { v, event ->
Log.i(TAG, "TextView onTouch event " + getDisplayAction(event.action))
false
}
}
private fun getDisplayAction(action: Int): String {
return when (action) {
MotionEvent.ACTION_DOWN -> "DOWN"
MotionEvent.ACTION_MOVE -> "MOVE"
MotionEvent.ACTION_UP -> "UP"
MotionEvent.ACTION_CANCEL -> "CANCEL"
MotionEvent.ACTION_OUTSIDE -> "OUTSIDE"
else -> "UNKNOWN"
}
}
}
กรณีที่ 1 Linear onTouch return **FALSE**
, Button onTouch return **FALSE**
,TextView onTouch return **FALSE**
คลิกที่ปุ่ม
I/TAG: Button onTouch eventDOWN
I/TAG: Button onTouch eventMOVE
I/TAG: Button onTouch eventUP
คลิกที่ TextView
TAG: TextView onTouch eventDOWN
TAG: LinearLayout onTouch eventDOWN
คลิกที่ LinearLayout
TAG: LinearLayout onTouch eventDOWN
กรณีที่ 2 Linear onTouch return **FALSE**
, Button onTouch return **TRUE**
,TextView onTouch return **TRUE**
คลิกที่ปุ่ม
Similar to case 1
คลิกที่ TextView
TAG: TextView onTouch event DOWN
TAG: TextView onTouch event MOVE
TAG: TextView onTouch event UP
คลิกที่ LinearLayout
Similar to case 1
กรณีที่ 3 Linear onTouch return **TRUE**
, Button onTouch return **FALSE**
,TextView onTouch return **FALSE**
คลิกที่ปุ่ม
Similar to case 1
คลิกที่ TextView
TAG: TextView onTouch event DOWN
TAG: LinearLayout onTouch event DOWN
TAG: LinearLayout onTouch event MOVE
TAG: LinearLayout onTouch event UP
คลิกที่ LinearLayout
TAG: LinearLayout onTouch event DOWN
TAG: LinearLayout onTouch event MOVE
TAG: LinearLayout onTouch event UP
บันทึก
- ค่าเริ่มต้นของ
TextView
คือnot clickable
จะกลายเป็นคลิกได้หากเราตั้งค่าเป็นandroid:clickable="true"
xml หรือเมื่อเราตั้งค่าtextView.setOnClickListener(...)
- เมื่อคุณแก้ไขข้อบกพร่อง
event MOVE
สามารถโทรได้มากกว่าบันทึกของฉัน (ขึ้นอยู่กับวิธีที่คุณแตะ)
สรุป
onTouch
return true
หรือ view is clickable
, View จะได้รับทั้งหมด onTouchEvent
onTouch
return false
and view is not clickable
, view จะไม่ได้รับ NEXT onTouchEvent (ซึ่งเป็นผู้ปกครองอาจได้รับ)
หวังว่าจะช่วย
DEMO