3

我尝试在我的 Activity 中使用类 BitmapFactory 的方法 decodeResource ,如下所示:

Bitmap image = new BitmapFactory.decodeResource(getResources(),R.drawable.my_image);

我进行了所有必要的导入,IntelliJ 甚至在我键入它时为我完成了方法,但是当我尝试编译时它给了我错误:

java: cannot find symbol

symbol:   class decodeResource 

location: class android.graphics.BitmapFactory
4

1 回答 1

13

删除new,因为decodeResource是静态方法,

像这样使用

Bitmap image = BitmapFactory.decodeResource(getResources(),R.drawable.my_image);
于 2013-04-21T15:13:45.400 回答