Can't compress a recycled bitmap

后端 未结 3 2250
迷失自我
迷失自我 2021-02-19 22:20

I\'m trying to save a Layout into an Image in the SDCard but I get this error. I tried several codes I found in this forum but all of them have the same compress call that is gi

3条回答
  •  梦如初夏
    2021-02-19 22:38

    This is probably causing the bitmap to be recycled:

    v.setDrawingCacheEnabled(false); // clear drawing cache
    

    If you want the bitmap to hang around longer, then you should copy it.

提交回复
热议问题