MMS CONTENT SUPPLIER QUESTION (Samsung Galaxy S3)

We encounter the following failure when we try to request โ€œcontent: // mms-sms / conversations /โ€ on a Samsung Galaxy S3 (Android 4.0.4) running on a Sprint network. Our code:

Uri uri = Uri.parse("content://mms-sms/conversations/"); Log.e("IL", "CONTENT MIME " + context.getApplicationContext().getContentResolver().getType(uri)); // The next call crashes... Cursor cursor = context.getApplicationContext().getContentResolver().query(uri, null, null, null, null); 

An interesting fact is that the above log returns

  CONTENT MIME vnd.android-dir/mms-sms 

as was expected.

Stack trace below:

 Caused by: java.lang.NullPointerException at android.os.Parcel.readException(Parcel.java:1333) at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:182) at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:136) at android.content.ContentProviderProxy.query(ContentProviderNative.java:358) at android.content.ContentProviderClient.query(ContentProviderClient.java:50) at com.ilyngo.sms.model.MessageCatalog.refresh(MessageCatalog.java:107) at com.ilyngo.sms.model.MessageCatalog.getSharedCatalog(MessageCatalog.java:58) at com.ilyngo.sms.model.ContactsManager.clearCaches(ContactsManager.java:31) at com.ilyngo.sms.app.bill_test.ThreadListActivity.onResume(ThreadListActivity.java:57) at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1158) at android.app.Activity.performResume(Activity.java:4544) at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2448) ... 12 more java.lang.NullPointerException at android.os.Parcel.readException(Parcel.java:1333) at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:182) at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:136) at android.content.ContentProviderProxy.query(ContentProviderNative.java:358) at android.content.ContentProviderClient.query(ContentProviderClient.java:50) at com.ilyngo.sms.model.MessageCatalog.refresh(MessageCatalog.java:107) at com.ilyngo.sms.model.MessageCatalog.getSharedCatalog(MessageCatalog.java:58) at com.ilyngo.sms.model.ContactsManager.clearCaches(ContactsManager.java:31) at com.ilyngo.sms.app.bill_test.ThreadListActivity.onResume(ThreadListActivity.java:57) at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1158) at android.app.Activity.performResume(Activity.java:4544) at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2448) at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2486) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2000) at android.app.ActivityThread.access$600(ActivityThread.java:128) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1161) at android.os.Handler.dispatchMessage(Handler.java:99) at android.os.Looper.loop(Looper.java:137) at android.app.ActivityThread.main(ActivityThread.java:4514) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:511) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:980) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:747) at dalvik.system.NativeStart.main(Native Method) 
+1
source share
2 answers

The problem can be solved using a simplified version of the request:

 Uri.parse("content://mms-sms/conversations?simple=true"); Cursor cursor = context.getApplicationContext().getContentResolver().query(uri, null, null, null, null); 

Keypoint here is the URI content://mms-sms/conversations?simple=true .

+1
source

This ContentProvider does not accept null projection. You must explicitly specify it with "*" so that it is passed to the SQL query:

 final String[] proj = {"*"}; Cursor cursor = context.getApplicationContext().getContentResolver().query(uri, proj, null, null, null); 

I assume this is a common problem with Android.

Check this question: How to read MMS data on Android?

0
source

All Articles