移动应用03_Android的SMSMMS应用开发-精品·公开课件.pptVIP

  • 4
  • 0
  • 约5.1千字
  • 约 36页
  • 2018-11-04 发布于广西
  • 举报

移动应用03_Android的SMSMMS应用开发-精品·公开课件.ppt

使用Intent 发送短信 在Android应用程序里,可以使用Intent对象来发送短信。如下面的代码: Uri?uri?=?Uri.parse(smsto:8613661510001);?? Intent?in?=?new?Intent(Intent.ACTION_SENDTO,?uri);?? in.putExtra(sms_body,?The?SMS?data);?? startActivity(in); 类似地,也可以使用Intent对象来发送E-mail。 如下面的代码: Uri?uri?=?Uri.parse(mailto:mike123@);?? Intent?in?=? new?Intent(Intent.ACTION_SENDTO,?uri);?? startActivity(in);?? 使用Intent 发送E-mail 类似地,也可以使用Intent对象来发送MMS。 如下面的代码: 使用Intent 发送MMS String?url =?file://sdcard//myPhoto.jpg; Uri?uri =?Uri.parse(url); Intent?in?=?new?Intent(Intent.ACTION_SEND);??? in.putExtra(sms_body,?“hello!);??? in.putExtra(Inten

文档评论(0)

1亿VIP精品文档

相关文档