this is my scale animaation code.

inAnimation = new ScaleAnimation(0.5f, 1f, 0.5f, 1f,
        Animation.RELATIVE_TO_SELF, -20f, Animation.RELATIVE_TO_SELF,
        -50f);
    outAnimation = new ScaleAnimation(1f, 0.5f, 1f, 0.5f,
        Animation.ABSOLUTE, (screenWidth), Animation.ABSOLUTE,
        (screenHeight / 2));

i have a viewFlipper that is define like this:

layout.setGravity(Gravity.CENTER);
    layout.setOrientation(LinearLayout.HORIZONTAL);
    layout.addView(centreFlipper);

where layout is LinearLayout.

all the animations are shadowed (goes under the screen), and i am able to c
the animation in the flipper area only.
please help.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to