Android 打开系统应用

总结一下Android 打开系统常用应用的方法,如打开文件选择器、打开文档阅读、等等

  1. 打开文件选择器

    val intent = Intent(Intent.ACTION_GET_CONTENT)
    intent.flags = Intent.FLAG_ACTIVITY_CLEAR_TOP
    intent.type = "/"
    //intent.type ="application/pdf"
    intent.addCategory(Intent.CATEGORY_OPENABLE)
    /*var mineTypes = arrayListOf("application/pdf", "text/plain")

    intent.putExtra(Intent.EXTRA_MIME_TYPES, mineTypes)*/
    intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true)
    startActivityForResult(
    Intent.createChooser(intent, "Select file"),
    REQUEST_CODE_SELECT_FILE)

  2. 打开PDF

    val intent = Intent(Intent.ACTION_VIEW)
    intent.flags = Intent.FLAG_GRANT_READ_URI_PERMISSION or Intent.FLAG_ACTIVITY_CLEAR_TOP
    intent.setDataAndType(uri, "application/pdf")
    startActivity(intent)

  3. 打开浏览器

    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_VIEW);
    intent.setData(Uri.parse("http://www.baidu.com")); //打开浏览器
    startActivity(intent);

  4. 打开拨号面板

    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_DIAL);
    intent.setData(Uri.parse("tel:13800008888")); // 打开拨号面板
    startActivity(intent);

5.打开短信

复制代码
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SENDTO);             //  打开短信发送面板
intent.setData(Uri.parse("smsto:13800001111"));
intent.putExtra("sms_body","短信内容");
startActivity(intent);

6.打开图库

复制代码
Intent intent = new Intent();
intent.setAction(Intent.ACTION_PICK);
intent.setData(MediaStore.Images.Media.EXTERNAL_CONTENT_URI);       //打开图片库
//  intent.setType("image/*");      //  选择照片
//  intent.setType("audio/*");      //  选择音频
//  intent.setType("video/*");      //  选择视频(mp4,3gp)
//  intent.setType("video/;image/");      //  选择视频和照片
startActivityForResult(intent, 10001);

7.打开相机,拍照

java 复制代码
Intent intent = new Intent();
intent.setAction(MediaStore.ACTION_IMAGE_CAPTURE); //打开系统相机
startActivityForResult(intent,1);       //  返回图片对象
相关推荐
安卓修改大师7 分钟前
安卓修改大师实战:从反编译到定制的完整APK修改指南
android
柚鸥ASO优化1 小时前
安卓APP推广的“降本增效”密码:守好商店内,打好商店外
android·aso优化
我是一颗柠檬2 小时前
【Java项目技术亮点】EXPLAIN深度分析与慢查询治理
android·java·开发语言
Android-Flutter2 小时前
android compose shadow 阴影 使用
android·kotlin·compose
帅次2 小时前
Android 高级工程师面试:Java 多线程与并发 近1年高频追问 22 题
android·java·面试
2501_943782353 小时前
【共创季稿事节】摩斯电码转换器:编码表与双向转换的实现
android·华为·鸿蒙·鸿蒙系统
STCNXPARM3 小时前
Android selinux详解
android·selinux
jzwalliser3 小时前
安卓手机玩转Manim动画制作
android·manim
zhangphil3 小时前
Android图片解码器libjpeg-turbo vs Skia最佳实践
android
河铃旅鹿4 小时前
在Ubuntu系统上为Android交叉编译OpenSSL
android·linux·ubuntu