I want to change z order of some views during animation
On Androids above 4.1.2 it works just fine, and on androids below 4.1.2 the Z order doesnt change, the top view remains on top.
This is what i am trying.
myView.bringToFront();
((View)myView.getParent()).invalidate();
How to make it work on older devices ?