2013-01-23 74 views
-1

有沒有更好的方法將600x3840像素的畫布移動到循環中? 這是我迄今爲止所做的爲什麼我的畫布循環看起來不順暢(Android)

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(); 

    } 

回答

相關問題