switch studio example control boton android onclick click switchcompat

example - toggle switch android studio



Android switchcompat desactivar al hacer clic en el texto (1)

Tengo un SwitchCompat :

<android.support.v7.widget.SwitchCompat android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Some title"/>

y quiero evitar hacer clic en el título del texto. Al hacer clic en el título del texto, el interruptor se alterna. Pero quiero hacer cambios solo si estoy haciendo clic en el ícono de alternar.

¿Es posible? ¿O tengo que crear dos views separadas para eso: un TextView para el título y un SwitchCompat sin texto?


Agrega esto:

android:clickable="true" android:focusable="true"