为什么我的画布循环看起来不平滑(Android)

时间:2013-01-23 14:37:36

标签: android loops bitmap android-canvas

是否有更好的方法可以在循环中移动600x3840像素的画布? 这是我迄今为止所做的

 imagetwo = Bitmap.createBitmap(BitmapFactory.decodeResource(this.getResources(), R.drawable.bckgr1));



    protected void onDraw(Canvas canvas) {
        canvas.drawBitmap(imagetwo, x,y, null);

    if (x==0){ 
        x=x-3; y=0;} 
    else 
    { x=x-3; y=0;  }

    if (x<-700)
    { x=0-3; y=0;} 
    else 
    { x=x-3; y=0;  } 
    invalidate();

    }