80,490
社区成员
发帖
与我相关
我的任务
分享
String[] projection = {MediaStore.Audio.Media.DATA};
Cursor cursor = managedQuery( MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
projection,
null,
null,
null);
int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.DATA);
cursor.moveToFirst();
String audioPath = cursor.getString(columnIndex);