获得文件的打开方式的Action是Intent.ACTION_GET_CONTENT 示例: Intent audioIntent = new Intent(Intent.ACTION_GET_CONTENT); audioIntent.setType("audio/*"); startActivity(Intent.createChooser(audioIntent,"选择音频程序")); 就弹出所有支持音频文件的应用列表.