是否有更好的方法可以在循环中移动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();
}
答案 0 :(得分:0)