I got a question regarding TranslateAnimation. Is it possible to force the the animation to occur
on top of other views? I’m trying to translate the first child on top of the other elements in a LinearLayout.
I thought setZAdjustment would do the job, but it didn’t work as expected.
I can see why that wouldn’t work as expected.
Try customizing your
LinearLayoutto one which overrides getChildDrawingOrder() and thereby force it to draw your animated child last.