标签: android canvas
我尝试了以下但没有成功:
Bitmap mBackground = BitmapFactory.decodeResource(getResources(),R.drawable.chart_bg).copy(Bitmap.Config.ARGB_4444, true); canvas.drawBitmap(mBackground, 0, 0, null);
但是我在绘制画布后获取图像,但不是在它的背景中。
有没有办法将图像放在已绘制的画布背景中?