我想从 SD 卡加载图片并将其显示在画布上。我有一个图片列表,我想显示用户选择的图片。可能我必须使用 canvas.drawBitmap 或 canvas.drawPicture 函数,但我不知道如何。谢谢!
问问题
275 次
1 回答
0
在你的 :
void draw(Canvas c) {
c.save();
c.drawColor(0xff000000);
doDraw(c); //method to call to set the image
}
public void doDraw(Canvas c) {
Resources res = getResources();
Bitmap bm = BitmapFactory.decodeResource(res, R.drawable.yourimage);
c.drawBitmap(bm, 0, 0, null);
}
于 2013-07-11T10:58:46.667 回答