我有一个包含 imageView 的 xml。
<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>
在代码中,我得到这个 imageView 并在其上运行 translateAnimation 从 X1 = 10 到 x2 = ScreenWidth ,Y1 & Y2 = 350px。此动画在 android 版本 2.2 上运行良好,但是当我在 OS 2.3 / 4.0 上运行此动画时,ImageView 将在翻译动画期间在屏幕上的某些点上截断并消失。
我不明白这是怎么回事。回应将不胜感激。