Wszystkie powyższe odpowiedzi są poprawne, ale wynik jest inny, czy widok jest, clickable
czy nieclickable
Przykład , mam LinearLayout
zawiera 1 Button
i 1 w TextView
ten sposób
<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>
W Aktywności mam kod podobny do
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"
}
}
}
Przypadek 1 Linear onTouch return **FALSE**
, Button onTouch return **FALSE**
,TextView onTouch return **FALSE**
Kliknij przycisk
I/TAG: Button onTouch eventDOWN
I/TAG: Button onTouch eventMOVE
I/TAG: Button onTouch eventUP
Kliknij TextView
TAG: TextView onTouch eventDOWN
TAG: LinearLayout onTouch eventDOWN
Kliknij LinearLayout
TAG: LinearLayout onTouch eventDOWN
Przypadek 2 Linear onTouch return **FALSE**
, Button onTouch return **TRUE**
,TextView onTouch return **TRUE**
Kliknij przycisk
Similar to case 1
Kliknij TextView
TAG: TextView onTouch event DOWN
TAG: TextView onTouch event MOVE
TAG: TextView onTouch event UP
Kliknij LinearLayout
Similar to case 1
Przypadek 3 Linear onTouch return **TRUE**
, Button onTouch return **FALSE**
,TextView onTouch return **FALSE**
Kliknij przycisk
Similar to case 1
Kliknij TextView
TAG: TextView onTouch event DOWN
TAG: LinearLayout onTouch event DOWN
TAG: LinearLayout onTouch event MOVE
TAG: LinearLayout onTouch event UP
Kliknij LinearLayout
TAG: LinearLayout onTouch event DOWN
TAG: LinearLayout onTouch event MOVE
TAG: LinearLayout onTouch event UP
Uwaga
- Domyślnie
TextView
jest not clickable
to klikalne, jeśli ustawimy android:clickable="true"
w xml LUB kiedy ustawimytextView.setOnClickListener(...)
- Podczas debugowania
event MOVE
można wywołać więcej niż mój dziennik (opiera się na tym, jak stukasz)
Podsumowanie
onTouch
powrót true
lub widok jest clickable
, widok otrzyma wszystko onTouchEvent
onTouch
powrót false
i widok nie jest clickable
, widok nie otrzyma NEXT onTouchEvent (może go otrzymać jego rodzic)
Mam nadzieję, że pomoże to w
DEMO