tags:

views:

15

answers:

1

[In Android App]

I want to change content of my all/certain SMS in my inbox.

Please suggest. whether it is possible?

A: 
do {
                    body.add(cursor.getString(3));
                    values1.put("body", "Update 1" + cursor.getString(3));
                    getContentResolver().update(Uri.parse("content://sms/inbox"),
                            values1, "_id=" + cursor.getInt(0), null);
                } while (cursor.moveToNext());

here is snippet to update sms in android

dhaiwat