issue in Android Fragment : still click on previous fragment

Take a look at this question of mine:

An invisible layout behind the fragment is getting clicked:

What helped me in this case and as the accepted answer states is to add the

android:clickable="true"

property to the top hierarchy ViewGroup of the layout you designed for the fragment on top ( the one that is being clicked through). That way the top fragment intercepts your clicks no matter where they occur (and even if no action is applied to it) and are not being passed to the lower level fragment/activity layout.