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

前端 未结 6 1426
迷失自我
迷失自我 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:33

    I switched from:

    android:layout_width="1095dp"
    android:layout_height="1200dp"
    

    To:

    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    

    Then the error went away.

    • Inspired by seekingStillness's answer

提交回复
热议问题