[android-developers] Delete SMS from Inbox

2009-01-15 Thread Kamal Hasan
Hi, Anybody knows how to delete sms from inbox. I have tried using the following format but its giving Illegal argument Exception : Unknown URL getContentResolver().delete(Uri.parse(content://sms/ inbox),null,null); Anybody knows the format to delete sms ? Thanks a lot Kamal

[android-developers] DELETE SMS FROM INBOX

2008-10-15 Thread rajesh
Is there any way to delete SMS(s) from the inbox. i am trying out context.getContentResolver().delete(Uri.parse(content://sms/inbox), null, null); [In the above case, the purpose is to delete all the SMSs in the inbox] But I am getting invalid URL. I intend to delete a particualr SMS based on

[android-developers] Delete sms from inbox

2008-10-14 Thread e
plz help me out.. i use for delete sms from in inbox i use: Cursor c = context.getContentResolver().query(Uri.parse(content:// sms/inbox), null,null, null, null); Log.d(TAG, Read + Integer.toString(c.getCount()) + SMS messages from content ( +