I am just learning Android.
I have a listview
with data taken from the table 'alphabet' on the database server. Suppose the table consists of id A, B, and C...
- Now when I select an item of ID A, the
listview
will be filled with data from different tables, eg. table 'number' - Then, when I select an item of ID B, the same
listview
will be filled with different data again, eg. table 'symbol' - And when I select an item of ID C, another activity will open (not
listview
) and fill data from other tables as well more or less as it is
Is there a tutorial describing the same problem I mentioned above? Thanks very much!