Canvas上的Android Studio drawBitmap无法正常工作

时间:2014-02-16 20:49:40

标签: java android mobile canvas android-studio

我想在Android Studio的Android应用程序画布上绘制图像。 c.drawBitmap()函数有错误。 它说:'无法解析方法'drawBitmap(android.graphics.Bitmap,int,int,int,int)'

Bitmap bg;
protected void onCreate(Bundle savedInstanceState) {
  ...
  bg = BitmapFactory.decodeResource(getResources(), R.drawable.bg);
  ...
}
public void run() {
  ...
  Canvas c = holder.lockCanvas();
  c.drawBitmap(bg, 100, 100, 400, 200); // error occurs here
  ...
}

我是Android开发的新手,我找不到解决方案。 感谢。

1 个答案:

答案 0 :(得分:1)