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

在这里,mRedPaddleRect 是一个使用 Rect 形成的 Rectangle,而不是设置它的颜色,我想设置一个图像。

如何才能做到这一点?

任何帮助,将不胜感激。

谢谢你。

4

2 回答 2

7

我就是这样做的,我不敢相信这很容易

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

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

于 2013-10-04T17:53:52.737 回答
2
    Bitmap workingBitmap = Bitmap.createBitmap(result);
    Bitmap mutableBitmap = workingBitmap
            .copy(Bitmap.Config.ARGB_8888, true);

        Canvas canvas = new Canvas(mutableBitmap);

把你的绘画代码放在这里

        Paint paint = new Paint();

    paint.setColor(context.getResources().getColor(R.color.text_color)); // Text

        paint.setStrokeWidth(12); // Text Size
        paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_OVER)); // Text
                                                                                // Overlapping
                                                                                // Pattern
        // some more settings...

        canvas.drawBitmap(mutableBitmap, RECTsrc, RECTdst, paint);

尝试这样的事情希望这会有所帮助

于 2013-10-03T13:54:18.697 回答