This is confusing me:
As far as I have read, a view with setVisibility(View.GONE); should not receive any more touch- or click events. My layout has two parts, which
If you set setVisibility(View.GONE) after some animation (fade out, for example), then try clearing the animation with clearAnimation(). This is what helped me.
setVisibility(View.GONE)
clearAnimation()