Google语音短信意图

时间:2011-03-22 03:13:22

标签: android sms google-voice

现在我正在尝试使用填充的号码创建短信意图。

Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
sendIntent.setData(Uri.parse("smsto:"+phoneNumber));
context.startActivity(sendIntent);
setResultData(null);

这适用于手机的短信应用程序,但问题是如果安装了Google语音且用户选择此选项而不是普通的短信应用程序,则谷歌语音将不会填充该号码。

有没有办法用短信意图填充谷歌语音中的号码?

2 个答案:

答案 0 :(得分:0)

您可以在此处查看“ Google语音意图和参数列表http://groups.google.com/group/appinventor/browse_thread/thread/2e857e86f113109b?tvc=2&pli=1

答案 1 :(得分:0)

这篇博文似乎是关于你所追求的:Intent设置短信的电话号码。元数据的冗余设置可能有助于谷歌语音增强型手机。

http://juristr.com/blog/2009/12/android-sms-activity-doesnt-fill-phone/