java.lang.NullPointerException: Attempt to invoke virtual method 'boolean android.graphics.Bitmap.isRecycled()' on a null object reference

前端 未结 6 1493
迷失自我
迷失自我 2021-01-06 01:16

I am trying to implement swipe to delete in RecyclerView. Everything seems to be working fine except drawing a delete icon below the item that\'s being swiped.

Thi

6条回答
  •  醉话见心
    2021-01-06 01:45

    My problem was that android added a vector drawable anydpi along with the multiple created image assets for the icon. I deleted the anydpi variant and it all works fine now.

提交回复
热议问题