I am looking for a tutorial for extensible list browsing using a local sqlite database.
What I understood so far is the following
private class MyTestList extends SimpleCursorTreeAdapter {
My question is how do you get the parent cursor and the child cursor, and then link them together.
There is an API called
@Override protected Cursor getChildrenCursor(final Cursor groupCursor) {
After that I have to connect it with ui how to do it. searched for a long time without getting the right material.
source share