Android和绘制明星图片

时间:2012-04-01 20:09:56

标签: android

我在画布上画画在我点击的地方。这是代码:

public class CanvasdrawActivity extends Activity implements OnTouchListener {
  ImageView imageView;
  Bitmap bitmap;
  Bitmap bitmap2;
  Canvas canvas;
  Paint paint;

  float downx = 0,downy = 0,upx = 0,upy = 0;

  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    imageView = (ImageView) this.findViewById(R.id.imageView1);
    Display currentDisplay = getWindowManager().getDefaultDisplay();
    float dw = currentDisplay.getWidth();
    float dh = currentDisplay.getHeight();

    bitmap = Bitmap.createBitmap((int) dw, (int) dh,
        Bitmap.Config.ARGB_8888);
    bitmap2=BitmapFactory.decodeResource(getResources(),
            R.drawable.star_bez_nog);

    canvas = new Canvas(bitmap);

    imageView.setImageBitmap(bitmap);
    imageView.setOnTouchListener(this);
  }

  public boolean onTouch(View v, MotionEvent event) {
    int action = event.getAction();
    switch (action) {
    case MotionEvent.ACTION_DOWN:
      downx = event.getX();
      downy = event.getY();
      canvas.drawBitmap(bitmap2, downx, downy, null);
      imageView.invalidate();
      break;

    }
    return true;
  }
}

我怎么能只画一次这张照片。当我点击ffirst时间星被绘制时,当我点击其他地方没有任何事情发生。绘制只应首先点击。

1 个答案:

答案 0 :(得分:1)

设置布尔值。

Canvas canvas;
Paint paint;
Boolean drawOnlyOnce = true;

public boolean onTouch(View v, MotionEvent event) {
...
if (drawOnlyOnce) {
  canvas.drawBitmap(bitmap2, downx, downy, null);
  imageView.invalidate();
  drawOnlyOnce = false;
}
...