Android Save object as blob in sqlite

后端 未结 2 1228
轻奢々
轻奢々 2020-12-24 04:12

is this right. I have this gridview. I want to save its item as blob in sqlite. so when i open the list of save data in sqlite ill just load the save item

2条回答
  •  再見小時候
    2020-12-24 04:40

    instead of (Object o), pass (Serializable o). Then, in the stuff you pass, add implements Serializable to class definition.

提交回复
热议问题