I want to delete a MMS message of a particular phone number in android. How can i do it? I am using content://mms-sms/conversations to get list of MMS messaged and tried with the following query:
this.getContentResolver().delete(
Uri.parse("content://mms-sms/conversations/" + ThreadId),
"address=?", new String[] { "contact number" });`
But it works only for sms and not for mms. Can someone tell me what can we do to delete particular MMS?
Thanks