以下のグーグルの例から
As an example of designing and coding content URI handling, consider a provider with the authority com.example.app.provider that recognizes the following content URIs pointing to tables:
content://com.example.app.provider/table1: A table called table1.
content://com.example.app.provider/table2/dataset1: A table called dataset1.
content://com.example.app.provider/table2/dataset2: A table called dataset2.
content://com.example.app.provider/table3: A table called table3.
私はここで混乱しています。この例は、Table1Contentprovider、Table2ContentProvider、Table3ContentProvider が同じオーソリティ URL を指していることを意味しますか? 私が読んだところによると、各プロバイダーには一意の機関 URL が必要です。
それとも、3 つのテーブルすべてで動作するプロバイダが 1 つしかないということですか? その場合、プロバイダーのクエリ メソッドで SQL クエリを実行して、3 つのテーブルすべてに関連するデータを取得しますか?