Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
キャンバスを移動するとキャンバス上に画像のスライスがたくさん描画されるので、画面外のスライスは描画しないようにしたい。
onDraw にこのようなものを入れて、画面上にある場合にのみ描画しないように指示します。
if (imageslice.getX() > 0 + screenXOffset && imageslice.getX < screenWidth + screenXOffset){ //Draw your image }