How to fix (android.database.CursorWindowAllocationException) crash

前端 未结 2 979
温柔的废话
温柔的废话 2021-01-22 15:25

Before the Local Datastore feature in Parse was available, I used to have my own local database for offline app usage. I think everything worked well until I decided to add a ho

2条回答
  •  借酒劲吻你
    2021-01-22 16:08

    It looks like you have a lot of Cursors open (582 of them) that that may not be needed. If you are explicitly creating Cursors, check that you also close them when they are no longer needed.

提交回复
热议问题