[android-developers] Controlling the rendering order of child views

2010-05-11 Thread Divkis
Hi, I have an application wherein I extend the ViewGroup class for laying out the child views as per my requirements. Some of the child views are instances of ImageView class and have partly transparent background. Given the alpha blending is order dependent, I would like to control the

Re: [android-developers] Controlling the rendering order of child views

2010-05-11 Thread Romain Guy
Hi, You can do it by calling setChildrenDrawingOrderEnabled(true) and then implementing getChildDrawingOrder(int, int). On Tue, May 11, 2010 at 11:37 AM, Divkis divick.kish...@gmail.com wrote: Hi,     I have an application wherein I extend the ViewGroup class for laying out the child views as