dhaiwat
dhaiwat

Reputation: 1771

How to modify SMSes in an Android inbox

How can I change the content of all or certain SMSes in my inbox?

Upvotes: 0

Views: 277

Answers (1)

dhaiwat
dhaiwat

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

Related Questions