通过Intent播放音频

1 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
2 intent.setType("audio/*");
3 startActivity(Intent.createChooser(intent, "Select music"));
原文地址:https://www.cnblogs.com/ivan-aldrich/p/4253844.html