Reputation: 5895
Hi i have Tab activity(Chapter,subject) and database. i need to show the chapter_table
content into (chapter)tabview and subject_table content into (subject)tab view.
I use one activity for both this tabview. my question is that how to show content of database in tabview. It's not possible to Use listActivity with tab activity.
How i do that? is any other way to show the content of db in tabactivity?.
Thanks in advance
Upvotes: 0
Views: 243
Reputation: 8961
you don't have to have a ListActivity
to use a ListView
-- you can include a ListView
in any layout you wish.
Upvotes: 1