Toutes les réponses ci-dessus sont correctes mais le résultat est différent si la vue est clickable
ou nonclickable
Exemple , j'ai un LinearLayout
contient 1 Button
et 1 TextView
comme ça
<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>
Dans Activity, j'ai du code comme
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"
}
}
}
Cas 1 Linear onTouch return **FALSE**
, Button onTouch return **FALSE**
,TextView onTouch return **FALSE**
Cliquez sur le bouton
I/TAG: Button onTouch eventDOWN
I/TAG: Button onTouch eventMOVE
I/TAG: Button onTouch eventUP
Cliquez sur TextView
TAG: TextView onTouch eventDOWN
TAG: LinearLayout onTouch eventDOWN
Cliquez sur LinearLayout
TAG: LinearLayout onTouch eventDOWN
Cas 2 Linear onTouch return **FALSE**
, Button onTouch return **TRUE**
,TextView onTouch return **TRUE**
Cliquez sur le bouton
Similar to case 1
Cliquez sur TextView
TAG: TextView onTouch event DOWN
TAG: TextView onTouch event MOVE
TAG: TextView onTouch event UP
Cliquez sur LinearLayout
Similar to case 1
Cas 3 Linear onTouch return **TRUE**
, Button onTouch return **FALSE**
,TextView onTouch return **FALSE**
Cliquez sur le bouton
Similar to case 1
Cliquez sur TextView
TAG: TextView onTouch event DOWN
TAG: LinearLayout onTouch event DOWN
TAG: LinearLayout onTouch event MOVE
TAG: LinearLayout onTouch event UP
Cliquez sur LinearLayout
TAG: LinearLayout onTouch event DOWN
TAG: LinearLayout onTouch event MOVE
TAG: LinearLayout onTouch event UP
Remarque
- La valeur par défaut
TextView
est not clickable
, il deviendra cliquable si nous définissons android:clickable="true"
en xml OU lorsque nous définissonstextView.setOnClickListener(...)
- Lorsque vous déboguez,
event MOVE
pouvez appeler plus que mon journal (il repose sur la façon dont vous appuyez)
Résumé
onTouch
retour true
ou vue est clickable
, View recevra tout onTouchEvent
onTouch
retour false
et vue n'est pas clickable
, vue sera ne recevra pas NEXT onTouchEvent (son parent peut le recevoir)
J'espère que cela aidera
DEMO