过年了,还有许多事情要做,现在写博客也比以前少了,等有时间再补充上吧!

打开浏览器显示网页:
Uri uri = Uri.parse("http://www.ataaw.com");
Intent intent = new Intent(Intent.ACTION_VIEW,uri);
startActivintenty(intent);

由地图参数显示地图:
Uri uri = Uri.parse("geo:38.899533,-77.036476");
Intent intent = new Intent(Intent.Action_VIEW,uri);
startActivintenty(intent);

拨打电话,调用拨号程序:
Uri uri = Uri.parse("tel:13800138000");
Intent intent = new Intent(Intent.ACTION_DIAL, uri);
startActivintenty(intent);

调用发送短信的程序发送SMS/MMS
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.putExtra("sms_body", "ATAAW.COM");
intent.setType("vnd.android-dir/mms-sms");
startActivintenty(intent);

调用短信程序发送短信
Uri uri = Uri.parse("smsto:13800138000");
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
intent.putExtra("sms_body", "ATAAW.COM");
startActivintenty(intent);

调用彩信服务发送彩信
Uri uri = Uri.parse("content://media/external/images/media/exp");
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra("sms_body", "ATAAW.COM");
intent.putExtra(Intent.EXTRA_STREAM, uri);
intent.setType("image/png");
startActivintenty(intent);

启动邮件应用程序发送Email
Uri uri = Uri.parse("mailto:ataaw.com@gmail.com");
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
startActivintenty(intent);

Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_EMAIL, "android.sz@live.com");
intent.putExtra(Intent.EXTRA_TEXT, "邮件内容。");
intent.setType("text/plain");
startActivintenty(Intent.createChooser(intent, "Choose Email Client"));

Intent intent=new Intent(Intent.ACTION_SEND);
String[] tos={"ataaw.com@gmail.com"};
String[] ccs={"cc@ataaw.com"};
intent.putExtra(Intent.EXTRA_EMAIL, tos);
intent.putExtra(Intent.EXTRA_CC, ccs);
intent.putExtra(Intent.EXTRA_TEXT, "邮件内容。");
intent.putExtra(Intent.EXTRA_SUBJECT, "邮件主题");
intent.setType("message/rfc822");
startActivintenty(Intent.createChooser(intent, "Choose Email Client"));

添加邮件附件内容
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_SUBJECT, "主题");
intent.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/ataaw.mp3");
sendIntent.setType("audio/mp3");
startActivintenty(Intent.createChooser(intent, "Choose Email Client"));

播放mp4多媒体文件
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("file:///sdcard/ataaw.mp3");
intent.setDataAndType(uri, "audio/mp3");
startActivintenty(intent);

更多相关文章

  1. Android(安卓)URI简介
  2. [置顶] Android(安卓)怎么退出整个应用程序?__以及__按键事件捕获
  3. 去掉android程序的任务栏
  4. Android(安卓)Preference Summary中实时显示内容变更
  5. 实现退出时关闭所有Activity的方法
  6. Android小程序之音乐播放列表
  7. Android中使用am命令实现在命令行启动程序详解
  8. 判断当前应用程序处于前台还是后台 ANDROID
  9. android退出系统的绝杀方法

随机推荐

  1. Android中的悬浮对话框和即点即关对话框
  2. android Looper、Handler和MessageQueue
  3. 推荐10个Android开源项目
  4. android opencv 前置摄像头
  5. Android的TextView
  6. Android 使用TextView实现跑马灯效果
  7. Android中插件开发篇之----应用换肤原理
  8. Android 设置dialog背景全透明无边框
  9. Android ELF文件PLT和GOT
  10. Android触摸事件传递机制