SyntaxFix
Write A Post
Hire A Developer
Questions
If you are using a LinearLayout you should call myView.bringToFront() and after you should call parentView.requestLayout() and parentView.invalidate() to force the parent to redraw with the new child order.
LinearLayout
myView.bringToFront()
parentView.requestLayout()
parentView.invalidate()