How to address multiple content providers?
问题 I created two content providers that work on two different tables of the same SQLite database. They share a single instance of SQLiteOpenHelper as described in the post of Ali Serghini. Each content provider is registered in AndroidManifest.xml as follows. <provider android:name=".contentprovider.PostsContentProvider" android:authorities="com.example.myapp.provider" android:exported="false" android:multiprocess="true" > </provider> <provider android:name=".contentprovider