BitmapFactory.decodeResource返回null

时间:2018-07-06 12:37:43

标签: android graphics bitmap android-context

此代码

    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);

有时会导致bitmapnull。 可能是什么原因?

0 个答案:

没有答案