Would you like to integrate a POJO- or Cursor-based library in your android app?

拜拜、爱过 提交于 2019-12-13 02:09:13

问题


My company wants to publish a library for android, so that other people can integrate our content easily in their custom apps.

Now I am still very uncertain how I should provide the content. Right now I am using POJOs to provide the data in my project.

I was following the debate "POJOs vs. Cursors" which turned out in favor of Cursors. I also have seen an example where somebody stores the parsed resource in a SQLLite-DB and accesses it later through Cursors.

I know that Cursors have many advantages compared to POJOs. But would you like to mess with cursors when you need to implement a library? Some of you guys might have written such libs as well. What did you use and why?


How other libs are doing it...

Facebook seems to use POJOs:

Response format: The server response is a JSON string. The SDK provides a Util.parseJson() method to convert this to a JSONObject, whose fields and values can be inspected and accessed.


回答1:


We used the Cursor approach in our last project, and found it quite cumbersome. Especially having to check whether there's actually something in the Cursor, iterating over it, finding the right indices for values, closing it properly.. not something I like to do over and over again. Especially the whole index stuff tends to break quite easily, especially since you can't define constants for it if you're actually making use of projections.

A good approach would probably be to use Cursor backed POJOs, at least when it comes to collections. That way the data could be read on demand. You still would have to find a sensible way to close the cursor then, though.

In case of single objects, I say to hell with projections and just dump everything it into a POJO.



来源:https://stackoverflow.com/questions/4285398/would-you-like-to-integrate-a-pojo-or-cursor-based-library-in-your-android-app

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