Android animation clipping when going between layouts
Posted
by Ravedave
on Stack Overflow
See other posts from Stack Overflow
or by Ravedave
Published on 2010-04-09T02:35:40Z
Indexed on
2010/04/09
2:43 UTC
Read the original article
Hit count: 525
I have a fairly complex layout. I use a relative layout as the root and then inside of it I have a few table views and some further nesting. When I animate an imageview between these layouts my image clips. I have a background on the parent layout and the animation looks like it's going under it. I have set android:clipChildren="false" and android:clipToPadding="false" on all of the layouts. I've also set anim.setZAdjustment(Animation.ZORDER_TOP); on all of my animations. What am I doing wrong?
© Stack Overflow or respective owner