有没有更好的方法来循环移动画布 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();
}