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);       //  返回图片对象
相关推荐
长亭外的少年6 小时前
Kotlin 编译失败问题及解决方案:从守护进程到 Gradle 配置
android·开发语言·kotlin
建群新人小猿8 小时前
会员等级经验问题
android·开发语言·前端·javascript·php
1024小神9 小时前
tauri2.0版本开发苹果ios和安卓android应用,环境搭建和最后编译为apk
android·ios·tauri
兰琛10 小时前
20241121 android中树结构列表(使用recyclerView实现)
android·gitee
Y多了个想法10 小时前
RK3568 android11 适配敦泰触摸屏 FocalTech-ft5526
android·rk3568·触摸屏·tp·敦泰·focaltech·ft5526
NotesChapter11 小时前
Android吸顶效果,并有着ViewPager左右切换
android
_祝你今天愉快13 小时前
分析android :The binary version of its metadata is 1.8.0, expected version is 1.5.
android
暮志未晚Webgl13 小时前
109. UE5 GAS RPG 实现检查点的存档功能
android·java·ue5
麦田里的守望者江13 小时前
KMP 中的 expect 和 actual 声明
android·ios·kotlin
Dnelic-13 小时前
解决 Android 单元测试 No tests found for given includes:
android·junit·单元测试·问题记录·自学笔记