I have created query() method inside 2 different classes A and B in 2 different files where A and B are querying from different tables:
public Cursor query(Uri uri, String[] projection, String selection,
String[] selectionArgs, String sortOrder) {
}
Then from 2 different Activity I tried to call using following code:
Cursor cursor = getContentResolver().query(uri, projection, null, null, null);
But from both Activity it's calling only query() method from Class A. Do I missing to set something before call the getContentResolver()?
My manifest:
<manifest>
<application>
......................
<provider
android:name=".provider.ItemProvider"
android:authorities="com.waveletandroid.provider" >
</provider>
<provider
android:name=".provider.CustomerProvider"
android:authorities="com.waveletandroid.provider" >
</provider>
</application>
</manifest>
My URI in ItemListActivity:
itemUri = Uri.parse("content://com.waveletandroid.provider/waveletandroid";
My URI in CustomerListActivity:
customerUri = Uri.parse("content://com.waveletandroid.provider/waveletandroid";
