Intent与uri.docVIP

  • 3
  • 0
  • 约3.1千字
  • 约 4页
  • 2017-07-09 发布于河南
  • 举报
Intent与uri

Intent与uri Java代码 以下是常用到的Intent的URI及其示例,包含了大部分应用中用到的共用Intent。   一、打开一个网页,类别是Intent.ACTION_VIEW   Uriuri=Uri.parse(“/”);   Intentintent=newIntent(Intent.ACTION_VIEW,uri);   二、打开地图并定位到一个点   Uriuri=Uri.parse(“geo:52.76,-79.0342″);   Intentintent=newIntent(Intent.ACTION_VIEW,uri);   三、打开拨号界面,类型是Intent.ACTION_DIAL   Uriuri=Uri.parse(“tel:10086″);   Intentintent=newIntent(Intent.ACTION_DIAL,uri);   四、直接拨打电话,与三不同的是,这个直接拨打电话,而不是打开拨号界面   Uriuri=Uri.parse(“tel:10086″);   Intentintent=newIntent(Intent.ACTION_CALL,uri);   五、卸载一个应用,Intent的类别是Intent.ACTION_DELETE   Uriuri=Uri.fromParts(“package”,“xxx”,null);   Intentintent=newIntent(Intent.ACTION_DELETE,uri);   六、安装应用程序,Intent的类别是Intent.ACTION_PACKAGE_ADDED   Uriuri=Uri.fromParts(“package”,“xxx”,null);   Intentintent=newIntent(Intent.ACTION_PACKAGE_ADDED,uri);   七、播放音频文件   Uriuri=Uri.parse(“file:///sdcard/download/everything.mp3″);   Intentintent=newIntent(Intent.ACTION_VIEW,uri);   intent.setType(“audio/mp3″);   八、打开发邮件界面   Uriuri=Uri.parse(“mailto:admin@3”);   Intentintent=newIntent(Intent.ACTION_SENDTO,uri);   九、发邮件,与八不同这里是将邮件发送出去,   Intentintent=newIntent(Intent.ACTION_SEND);   String[]tos={“admin@3”};   String[]ccs={“webmaster@3”};   intent.putExtra(Intent.EXTRA_EMAIL,tos);   intent.putExtra(Intent.EXTRA_CC,ccs);   intent.putExtra(Intent.EXTRA_TEXT,“Icomefrom”);   intent.putExtra(Intent.EXTRA_SUBJECT,“/”);intent.setType(“message/rfc882″);   Intent.createChooser(intent,“ChooseEmailClient”);   //发送带附件的邮件   Intentintent=newIntent(Intent.ACTION_SEND);   intent.putExtra(Intent.EXTRA_SUBJECT,“Theemailsubjecttext”);   intent.putExtra(Intent.EXTRA_STREAM,“file:///sdcard/mysong.mp3″);   intent.setType(“audio/mp3″);   startActivity(Intent.createChooser(intent,“ChooseEmailClient”));   十、发短信   Uriuri=Uri.parse(“tel:10086″);   Intentintent=newIntent(Intent.ACTION_VIEW,uri);   intent.putExtra(“sms_body”,“Icomefrom”);   intent.setType(“vnd.Android-dir/mms-sms”);   十一、直接发邮件   Uriuri=Uri.parse(

文档评论(0)

1亿VIP精品文档

相关文档