在下面的代码中我遇到了上述错误,这里我也声明了变量。
contentBitmap = Bitmap.createBitmap(300, 300,
Config.ARGB_8888);
Backgroundcanvas = new Canvas(contentBitmap);
答案 0 :(得分:1)
它没有将Config
识别为类名。您需要使用限定名称Bitmap.Config.ARGB_8888
或将import android.graphics.Bitmap.Config;
放在文件顶部。