Android - Animation By Drawing Bitmap Is Not Smooth
I am trying to animate several shapes(paths) by drawing them on the surface holders canvas. At first I was drawing them as paths and everything was fine, the movement was smooth. A
Solution 1:
I think it might be due to the bitmap being drawn without filtering it for smoothness. Have you set the paint to smooth the bitmap? If not, that might be your solution.
Paint paint = new Paint();
paint.setFilterBitmap(true);
Post a Comment for "Android - Animation By Drawing Bitmap Is Not Smooth"