I am new in Android and am implementing a content provider for 5 tables. My Questions Are: Should I have a Content Provider for each table or multiple tables in a single Content provider? Since the Content Provider has a single insert, update, query, delete methods.
How can I include only one Content Provider in my application? I have searched and in Most of the examples, I only find a single table apps.
Where do I have to use switch conditions to support multiple tables with the same Content Provider?
please give me some idea.