Reputation: 1771
How can I change the content of all or certain SMSes in my inbox?
Upvotes: 0
Views: 277
Reputation: 1771
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());
Upvotes: 1