Android:如何使用for循环绘制图像一段时间

时间:2011-11-16 09:54:13

标签: android

我在android工作。

我有这两张图片: - enter image description here

enter image description here

现在使用for循环我想在运行时绘制这些图像。所以请问我该怎么做?

意味着它将在运行时决定这些图像应重复多少次。 最后我想这样画: - enter image description here

但这个比例可能会在运行时发生变化。请帮帮我怎样才能做到这一点。你可以给我一些实例来实现这个。 提前谢谢。

2 个答案:

答案 0 :(得分:4)

根据您提供的信息,它应该大致如下:

// A is the class you want to paint images. It should  be subclass of View class
class A extends View {

    /* Other code... */    

    // You need to overwrite onDraw, this is where drawing to screen is made
    public void onDraw(Canvas c) {
        // x is an array containing the coordinates
        ArrayList<Point> coordinates coors;
        // You need to calculate coordinates in runtime and set them
        x = ...
        for(int i = 0; i < coors.size(); i++) {
          c.drawBitmap(bitmap, coors.get(i).x, coors.get(i).y, null); // Tells system to paint image to coordinates x,y
        }
    }
    /* ... */  
}

答案 1 :(得分:3)

使用水平LinearLayout。

for (int i=0; i < menCount; i++) {

      ImageView imageView = new ImageView(this);
      imageView.setImageDrawable(arg0);  //provide the drawable as argument.
      hll.addView(imageView);
}

也为女性形象做同样的事情。