目前,我正在使用以下代码在 sdcard 上搜索特定的音频文件名,例如 mymusic1.mp3。
private String[] getAudioPath(String songTitle) {
final Cursor mCursor = getContentResolver().query(
MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
new String[] { MediaStore.Audio.Media.DISPLAY_NAME, MediaStore.Audio.Media.DATA },
MediaStore.Audio.Media.TITLE+ "=?",
new String[] {songTitle},
"LOWER(" + MediaStore.Audio.Media.TITLE + ") ASC");
int count = mCursor.getCount();
String[] songs = new String[count];
String[] mAudioPath = new String[count];
int i = 0;
if (mCursor.moveToFirst()) {
do {
songs[i] = mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.DISPLAY_NAME));
mAudioPath[i] = mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.DATA));
i++;
} while (mCursor.moveToNext());
}
mCursor.close();
return mAudioPath;
}
但是,我需要将其更改为查找标题为“Let It Be”的歌曲,而不是搜索歌曲文件名以及搜索整个设备,而不仅仅是 SD 卡。
我尝试调整 getContentResolver().query() 以搜索整个设备 + 搜索歌曲标题元数据,但没有太大成功。这可能吗?
谢谢!