[android-developers] Delete SMS

2010-09-24 Thread perumal316
Hi All, I am writing my own SMS application that will display a toast of my message once it arrive. Now is it possible to delete the message after the display of the toast, so that it will not go into the native SMS application? Thanks In Advance, Perumal -- You received this message because

[android-developers] Delete SMS messages from SIM card

2009-03-20 Thread Mark K
Anyone know how to delete SMS messages from the SIM card? Thanks! Mark --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[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 ( +