本文介绍了如何开创的Android特定的短信的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法开拓消息传递活动在Android上有一个特定的短信?
Is there a way to open up the Messaging Activity on android with a specific SMS?
推荐答案
// threadId的应该是手机短信的ID / MMS线程要查看
// 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
这篇关于如何开创的Android特定的短信的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!