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()
You could try doing view.setVisibility(View.INVISIBLE) or view.setVisibility(View.GONE).
view.setVisibility(View.INVISIBLE)
view.setVisibility(View.GONE)
UPDATE:
This shows you how to accomplish what you want to do.