此代码
Resources res = gameView.getResources();
BitmapFactory.Options options = new BitmapFactory.Options();
options.inInputShareable = true;
options.inPurgeable = true;
options.inJustDecodeBounds = false;
Bitmap bitmap = BitmapFactory.decodeResource(res, R.drawable.img, options);
有时会导致bitmap
为null
。
可能是什么原因?