I cant find a way to get/dump table names in a text view from a database in android. I know about:querying
SELECT *
FROM sqlite_master
The above statement results a cursor pointing the metadata about all databases/view/tables. But how can I fetch the names of all the tables I created, in my database?
If you want to retrieve the info in an array (or any structure which you can iterate through strings), you can make a method like: