I have following scenario. There is OrderHeader and OrderDetail tables in SQLLite database. I have Activity where I want to display that data. There is number of fields...

The way I see it - it has to be like this:

  1. Get data from my content provider (I have it).
  2. Get ordinals for columns in cursor.
  3. Get values from cursor and format/assign them

Like I said - there is MANY fields and writing this kind of code (especially #1 and #2) very tedious and boring :)

So, I've got this idea.. Since my data comes in as JSON to begin with (from web) - I can store original JSON presentation in database along with parsed-out data and when I need to bind - all I need is to query table for this column and deserialize with GSON. This way - #1 and #2 will be 3 lines instead of many. And I will work with POJO...

Does that sounds good or there is natural nice way to bind views to data from database?

link|improve this question

feedback

1 Answer

Use a ListView and a SimpleCursorAdapter (or extend it).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.