-1

如果有人可以帮助我,我想实现我的 android 游戏的循环

我在图像视图上加载了随机图像。

现在我想将我的图像从屏幕左下角加速到屏幕中心,形成 45 度角。达到窥视后,它应该在右下角下降,形成 45 度角..

我的代码是

int[] imageView = {
            R.id.imageV
            };

    int[] images ={
          R.drawable.image1,
          R.drawable.image2,
          R.drawable.image3,
          R.drawable.image4
         };

      Random rand=new Random();

      for(int v : imageView) {
            ImageView iv = (ImageView)findViewById(v);

            iv.setImageResource(images[rand.nextInt(images.length)]);

        }
4

1 回答 1

0

首先检查文档,然后尝试自己制作。如果不能,请返回您的代码,我们可以帮助您修复错误。

基本上,您应该使视图运行各种动画(移动和旋转)并将它们添加到动画集​​中。

https://developer.android.com/guide/topics/graphics/animation.html

https://developer.android.com/guide/topics/resources/animation-resource.html

https://developer.android.com/reference/android/view/animation/package-summary.html

于 2012-02-17T14:02:03.687 回答