Blurry image after canvas rotate, only in Android 6
问题 I've got a custom view with the following code: private final Drawable outerGauge; private final Drawable innerGauge; private float rotateX; private float rotateY; private int rotation = 0; { outerGauge = getContext().getDrawable(R.drawable.gauge_outer); innerGauge = getContext().getDrawable(R.drawable.gauge_inner); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); outerGauge.draw(canvas); canvas.rotate(rotation, rotateX, rotateY); innerGauge.draw(canvas); canvas.rotate