I wish to disable all the touch screen interactions while an animation is being displayed. I don\'t wish to use the setClickable() method on the buttons at the
setClickable()
Easy way to implement that is add transaperent layout over it (add it in your xml fill parent height and width).
In the animation start: transaparentlayout.setClickable(true);
transaparentlayout.setClickable(true);
In the animation end: transaparentlayout.setClickable(false);
transaparentlayout.setClickable(false);