[In Android App]
I want to change content of my all/certain SMS in my inbox.
Please suggest. whether it is possible?
[In Android App]
I want to change content of my all/certain SMS in my inbox.
Please suggest. whether it is possible?
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