How can I insert on SMS into inbox and set it as unread? I tried using the following code.
ContentValues values = new ContentValues();
values.put("address", "123456789");
values.put("body", "foo bar");
getContentResolver().insert(Uri.parse("content://sms/sent"), values);
Insertion is working. But I don't know how to set it as unread. Also please tell me what is the type of sms table columns 'status', 'read' and 'seen'? How can I use them? Thanks.