How to open up a specific SMS in android

前端 未结 4 577
死守一世寂寞
死守一世寂寞 2021-01-04 09:03

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

4条回答
  •  天命终不由人
    2021-01-04 09:38

    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);
    

提交回复
热议问题