Is there a way to open up the Messaging Activity on android with a specific SMS?

link|improve this question

74% accept rate
feedback

3 Answers

up vote 3 down vote accepted

// threadId should be the id of the sms/mms thread you want to view

Intent defineIntent = new Intent(Intent.ACTION_VIEW); 
defineIntent.setData(Uri.parse("content://mms-sms/conversations/"+threadId));  
myActivity.startActivity(defineIntent);

This is the simplest way I found

link|improve this answer
How do I obtain the thread Id of a sms? – Janusz Dec 29 '10 at 19:02
Try looking at the findThreadIdFromAddress() method here: code.google.com/p/android-smspopup/source/browse/trunk/SMSPopup/… – paul_sns Sep 17 '11 at 12:38
feedback

I dug this out of the source for the Messaging app (lines 311-315), so I'm pretty sure it'll work, but I don't have any experience with it.

// threadId should be the id of the sms/mms thread you want to view
long threadId = 0; 
Intent i = new Intent("com.android.mms");
i.setData(
        Uri.withAppendedPath(
                i.getData(), Long.toString(threadId)
        )
);
i.setAction(Intent.ACTION_VIEW);
link|improve this answer
I think 'thread id' is different from 'sms id'? different sms from a same person (each has it own id) can have same thread id. – n179911 Sep 14 '09 at 17:48
feedback

Try this

int req_thread_id;

Uri mSmsinboxQueryUri = Uri.parse("content://sms"));
Cursor cursor1 = getContentResolver().query(
                        mSmsinboxQueryUri,
                        new String[] { "_id", "thread_id", "address", "person", "date",
                                "body", "type" }, null, null, null);

startManagingCursor(cursor1);
if (cursor1.getCount() > 0)
{
while (cursor1.moveToNext())
{

int thread_id = cursor1.getInt(1);
String address; = cursor1.getString(cursor1
                            .getColumnIndex(columns[0]));
if("your desired no".equals(address)
 req_thread_id = thread_id;
}
}
Intent defineIntent = new Intent(Intent.ACTION_VIEW); 
defineIntent.setData(Uri.parse("content://mms-sms/conversations/"+req_thread_id));  
myActivity.startActivity(defineIntent);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.