Pues bien, si pulso en una parte una parte de la pantalla que no contiene nada, y coincide que hay un botón del fragment anterior, ese botón abre su fragment correspondiente, porque sigue activo.
En el fragment tengo puesto:
Código:
android:clickable="false"
Código
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:fillViewport="true" android:orientation="vertical" android:id="@+id/fragmen_inicio" android:background="#FAFAFA" android:clickable="false"> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FAFAFA"> ............. ............. ............. </ScrollView> </RelativeLayout>
pero los botones, aunque no se ven por el color de fondo del otro fragment siguen activos los botones.
Como puedo Deshabilitar para que al pulsar en el otro fragment no respondan ?
Gracias.