Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/*");
startActivity(Intent.createChooser(intent, "Select music"));选择查找音乐
本文介绍了一种使用Intent在Android应用中选取音乐文件的方法。通过设置Intent的动作和类型,启动文件选择器让用户从设备上挑选音频文件。
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/*");
startActivity(Intent.createChooser(intent, "Select music"));
2万+
2万+
790
1099

被折叠的 条评论
为什么被折叠?