码迷,mamicode.com
首页 > 其他好文 > 详细

调用系统程序

时间:2014-08-01 18:38:32      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   使用   io   for   art   

拨打电话

1 Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:"
2                         + "4006-513520"));
3                 startActivity(intent);

发送短信

1 Intent intent = new Intent(Intent.ACTION_VIEW);
2                 intent.setType("vnd.android-dir/mms-sms");
3                 startActivity(intent);

发送邮件

1 Intent intent = new Intent(Intent.ACTION_SENDTO, Uri
2                         .parse("mailto:daishuguang4461@126.com"));
3                 startActivity(intent);

拍照

1 // 拍照我们用 Action为MediaStore.ACTION_IMAGE_CAPTURE,
2                 // 有些人使用其他的Action但我发现在有些机子中会出问题,所以优先选择这个
3                 intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
4 
5                 fileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE);
6                 intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);
7                 startActivityForResult(intent,
8                         CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);

相册

1 // 选择照片的时候也一样,我们用Intent.ACTION_GET_CONTENT
2                 intent = new Intent(Intent.ACTION_PICK);
3                 intent.setType("image/*");
4                 startActivityForResult(intent, 2);

 

调用系统程序,布布扣,bubuko.com

调用系统程序

标签:android   style   blog   color   使用   io   for   art   

原文地址:http://www.cnblogs.com/daishuguang/p/3885177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!