我使用Bitmap在Rect上设置图像,对于2D游戏,但是当我使用Bitmap设置Image时,我收到以下错误:
尝试调用虚方法' android.content.res.Resources android.content.Context.getResources()'在空对象引用上
我的代码在Rect上设置图像是: canvas.drawBitmap(BitmapFactory.decodeResource(context.getResources(),R.drawable.asteroid),null,rectangle,paint);
避免获取任何null object reference
的正确方法是什么?