首页 > 代码库 > 通过Intent播放音频

通过Intent播放音频

1 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);2 intent.setType("audio/*");3 startActivity(Intent.createChooser(intent, "Select music"));

 

通过Intent播放音频