I have a problem to send the view to back. In Android we have a method like bringToFront(), to place the view on top of the another view. Like that, I want to p
bringToFront()
If you're using appCompat library, there's another way to change Z order for devices lower than 21 API level:
ViewCompat.setTranslationZ(view, zValue);