My app is using CursorLoader
to load data from main table. The data will be displayed in ListView
with the help of CursorAdapter
. The view displayed in ListView also requires data from child table. The relationship of the tables is one-to-many.
If I join both tables during the query, the combined records will be as many as child records, thus in
ListView
, it will display multiple item for one single record in the main table.If I don't join the table, I am not sure what the best way to retrieve child records after the
CursorLoader
has delivered the data via the cursor. Anyone able to help me out?
Loader
s. – Chronister