当前位置:操作系统 > 安卓/Android >>

Android开发: 获得某一个类型文件的打开方式

获得文件的打开方式的Action是Intent.ACTION_GET_CONTENT
示例:
Intent audioIntent = new Intent(Intent.ACTION_GET_CONTENT); 
audioIntent.setType("audio/*");
startActivity(Intent.createChooser(audioIntent, "选择音频程序"));
就弹出所有支持音频文件的应用列表
补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,