在我的Android应用程序中,我正在使用短信验证,当应用程序显示一个带有文本&#34的弹出框时;请检查消息是否有激活链接"和"消息"按钮;当我点击" Messaging"它应该从我的应用程序重定向到设备的默认消息传递应用程序。
如何将我的应用程序重定向到默认消息传递应用程序?
在Android中可以吗?
先谢谢。
答案 0 :(得分:0)
检查此代码
Uri smsUri = Uri.parse("tel:100861");
Intent intent = new Intent(Intent.ACTION_VIEW, smsUri);
intent.putExtra("sms_body", "shenrenkui");
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);
答案 1 :(得分:0)
要启动短信活动,您只需要:
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.setType("vnd.android-dir/mms-sms");
您可以添加额外内容来填充自己的消息,例如
sendIntent.putExtra("sms_body", "xyz");
然后只是意图启动活动。
startActivity(sendIntent);