How to send view to back ? How to control the z-order programmatically? How to send view to back ? How to control the z-order programmatically? android android

How to send view to back ? How to control the z-order programmatically?


I realize that this has been implied in other answers, but no one posted the code. I keep the following in a utility class where I have "helper" functions for dealing with views:

public static void sendViewToBack(final View child) {    final ViewGroup parent = (ViewGroup)child.getParent();    if (null != parent) {        parent.removeView(child);        parent.addView(child, 0);    }}


There is no sendToBack() method. But if you call bringToFront() on the lower positioned view you get almost the same effect.


Afaik there's no built-in solution for this. I guess you're trying to modify the z-order in a FrameLayout, or something similar.

However, I think you can modify the order of the contained child elements in the layout. RemoveChild...() and addView() methods can take position values, so you could most likely swap child elements around, and that would modify the z-order. It seems a bit hacky solution however.

Or consider modifying the visibility property of the child views, you may get similar behaviour, and that'd be much cleaner I think.

Edit:

With the new Android version, the L Developer Preview it seems that at last we have the ability to easily change the Z ordering of Views. 'Elevation' and 'TranslationZ' properties to the rescue: https://developer.android.com/preview/material/views-shadows.html