【问题标题】:How does android send SMS and MMS?android如何发送短信和彩信?
【发布时间】:2012-04-21 07:03:53
【问题描述】:

在android源码中,我找到了isms接口,它使用了SmsManager。

什么类实现了这个接口?它是如何工作的?
调用此方法时会发生什么,例如 sendText?

【问题讨论】:

标签: android sms send mms


【解决方案1】:

使用以下链接发送短信。 使用短信管理器。这是一个sample project,显示了通过默认客户端或使用 SmsManager 发送 SMS 的基础知识。不过,我不相信有公共 API 可以发送彩信。

LINK1

LINK2

或者简单地使用下面的代码来启动原生消息框

Intent sendIntent = new Intent(Intent.ACTION_VIEW);
//use to fill the sms body
sendIntent.putExtra("sms_body", "Hi this is test sms"); 
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);

【讨论】:

  • 我现在不得不从安卓发送短信。我想现在怎么发生的。 ISms 如何通过 intarface 发送它。可能是某个类实现了这个接口。然而我还没有找到它是如何工作的并寻求帮助。
猜你喜欢
  • 2016-09-02
  • 1970-01-01
  • 2012-03-30
  • 1970-01-01
  • 2014-08-07
  • 1970-01-01
  • 2023-03-19
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多