I was wondering if I have this situation:
- In our SQLite databse, there are some tables (let's say four). each table consists of two columns:
Title and Content. - We retrieved the titles from all the four tables, and display them in one
ListView
The question is: How can we handle the onItemClickListener so that we can retrieve the Content of the selected item given that the items are from different tables?
I think I'll come across problem like that and I just want to know if it can be handled or not.
Thanks.