0

当我触摸屏幕时,我一直在尝试更改矩形数组中特定矩形的颜色,但它似乎不起作用,这是我的代码:

public Paint blue = new Paint();
RandomColorGen rc;
ArrayList<Integer> colors = RandomColorGen.ColorList(5);
Random rand = new Random();
int columns = 50;
int rows = 50;
Rect square[][] = new Rect[rows][columns];

public boolean isTouched;
public Canvas canvas;

    @Override
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    this.canvas = canvas;

    for (int x = 0; x < rows; x++) {
        for (int y = 0; y < columns; y++) {

            square[x][y] = new Rect();

            blue.setColor(colors.get(rand.nextInt(colors.size())));
            blue.setStyle(Paint.Style.FILL);

            square[x][y].set(0, 0, (canvas.getWidth() - 10) / rows,
                    ((canvas.getHeight() - 100) / columns));
            square[x][y].offsetTo(x * ((canvas.getWidth() - 10) / rows), y
                    * ((canvas.getHeight() - 100) / columns));

            canvas.drawRect(square[x][y], blue);


        }
    }
    if(isTouched){
        blue.setColor(colors.get(rand.nextInt(colors.size())));
        blue.setStyle(Paint.Style.FILL);
        canvas.save();
        canvas.clipRect(square[1][1]);
        canvas.drawRect(square[1][1], blue);

        canvas.restore();

    }

}

@Override
public boolean onTouchEvent(MotionEvent event) {

    switch (event.getAction()) {
    case MotionEvent.ACTION_DOWN:
        isTouched = true;


        break;
    }

    return true;

}

colors.get() 是一个颜色数组列表。我采取了错误的方法吗?

4

2 回答 2

0

我刚刚测试了你的代码,它可以工作,但有几点值得注意:

  • 在绘图期间分配对象是一种非常糟糕的行为(特别是在分配 50*50 时)!onDraw()如果要实现与现在相同的行为,请考虑将分配代码移动到构造函数并更改方法中矩形的位置。
  • 您的使用onTouchEvent()不完整,只要用户没有举手,您就需要将isTouched设为true,可以按以下方式完成:

    @Override
    public boolean onTouchEvent(MotionEvent event) {
    
    switch (event.getAction()) {
    case MotionEvent.ACTION_DOWN:
        isTouched = true;
    
    
        break;
    case MotionEvent.ACTION_UP:
    case MotionEvent.ACTION_CANCEL:
        isTouched = false;
        break;
    
    }
    invalidate();
    return true;
    

    }

  • 每次收到TouchEvent时,也请求一个布局,方法是使用invalidate()

于 2013-02-24T09:15:58.713 回答
0

在执行 onTouch 操作后如何调用绘制函数...

OnTouch 动作是第一个动作,那么如何调用 Paint() 函数?

于 2013-02-24T08:24:16.923 回答