Re: [android-developers] Re: How to delete a inbox message from a specific sender

2010-06-15 Thread Nishant Kumar
Hi, Although this method of content Uri is working , I have found over internet that this is not a reliable method. It has been removed from current android sdk and there is not any document on Android Developer website. So, I thought to convey this message. Moreover, there is no reliable way

[android-developers] Re: How to delete a inbox message from a specific sender

2010-06-15 Thread Ganesh Pisal
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.bl