SMS/MMS Inbox parsing:
Uri uriSms = Uri.parse("content://sms/inbox");
Cursor c = getContentResolver().query(uriSms, null,null,null,null);This will help you to parse messages from inbox. No idea about message deletion. Regards, Ganesh Pisal Creating Android knowledge base - http://ganeshpisal.blogspot.com/ On Jun 11, 6:51 pm, Mohammad Siddiqui <[email protected]> wrote: > Hi > everyone > How to delete a inbox message programmaticaly coming from a specific > sender > > Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

