Paint mPaint = new Paint();
 mPaint.setStyle(Style.FILL);
 mPaint.setColor(Color.Red);
 canvas.drawRect(mRedPaddleRect, mPaint);


在这里,mRedPaddleRect是使用Rect形成的Rectangle,而不是将其设置为我想要设置Image的颜色。

如何才能做到这一点?

任何帮助,将不胜感激。

谢谢。

最佳答案

我就是这样做的,我简直不敢这么简单

       Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(),R.drawable.racquet);
       canvas.drawBitmap(bitmap, null, mRedPaddleRect, mPaint);


希望这也会对其他人有所帮助。

关于android - 是否可以将“图像设置”绘制为对象而不是颜色?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19160326/

10-12 13:43