I have an xml that have an imageView in it.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/blockingLayer"
android:layout_width="880px"
android:layout_height="600px">
<ImageView
android:layout_width="110px"
android:layout_height="60px"
android:id="@+id/fish_image_view"
android:visibility="visible"
android:layout_marginLeft="0px"
android:layout_marginTop="350px"
/>
</RelativeLayout>
In code i am getting this imageView and running the translateAnimation on it from X1 = 10 to x2 = ScreenWidth , Y1 & Y2 = 350px. This animation is working fine on android version 2.2 but when i run this on OS 2.3 / 4.0 ImageView will cuttoff and disappear on some points on screen during translate animation.
I could not understand what is going wrong with this. Response will be appreciated.