Re: [android-developers] Android and Z-Order

2012-09-29 Thread Romain Guy
In all built-in layouts, the z-order is based on the index of the children. You can influence the z-order by overriding getChildOrder (see ViewGroup's documentation.) You can also use methods like bringToFront() or add/remove to move children around but these methods will cause relayouts. On Fri,

[android-developers] Android and Z-Order

2012-09-29 Thread John
How do you animate views around one another using the 3.0 animation framework when you can't influence the Z-ORDER? If the layout of elements isn't guaranteed and the z-order is based off the layout order, how can you change the z-order to do effective animations? -- You received this message