在android中实现图像循环

时间:2012-02-16 19:12:34

标签: android android-layout loops cocos2d-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)]);

        }

1 个答案:

答案 0 :(得分: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