Hi, I'm trying to create an effect where one image slides off the screen to the left while another zooms in from the background. I have this mostly working with an ImageSwitcher that has an inAnimation and outAnimation. However, the "in" image seems to always draw on top of the "out" image, instead of seeming to come from behind like I want.
I've tried: * Setting android:zAdjustment="top" to my slide_left anim (both in the <set> and <scale> elements) * Setting android:zAdjustment="bottom" to my zoom_in anim * Calling imageSwitcher.getCurrentView().bringToFront() right before my call to imageSwitcher.setCurrentResource(). This seems to make the "out" image invisible Does anyone know the right way to adjust z-order within an ImageSwitcher? I'd like to stick with ImageSwitcher if possible since it has otherwise been perfect. Thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

