How to pass Cursor Object to next Activity using Intents

喜欢而已 提交于 2019-12-22 06:57:16

问题


I'm familiar with how to pass Raw Data(String, int, boolean etc) from one Activity to another Activity. But in my application, I want to pass a Cursor object to next Activity. I'm extending my class from the Activity Class.

Though I have looked at this post. but it provides cotradictory solutions. However, as described by one of the users, one should extend Application class to pass cursor data. But I want to extend Activity class. So is there any way to pass Cursor data from an Activity to another Activity.

Note- If it helps, the fact why I want to use the cursor is, I'm querying data for a particular contact clicked from the list and saving it in the cursor and I want to pass the same cursor data to the next Actvity.


回答1:


  • Re-query your cursor on the destination side.
  • Store the cursor data in a class which implements Parcelable.(when your cursor data is in small size).

Above both method will work perfectly, concern really coming when you dealing with Static ones.

Remember: To open/close cursor and database when required.




回答2:


your Cursor is just a reference of your requites query you executed to SQLite and passing Cursor it not good idea . Although if your data is not much sized then you can get data from Cursor and save it in any collection and pass it as serialized form to another activity via intent .



来源:https://stackoverflow.com/questions/14037254/how-to-pass-cursor-object-to-next-activity-using-intents

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!