作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
目前我通过歌曲的标题从 MediaStore 获取歌曲 ID:
long id = 0;
ContentResolver cr = context.getContentResolver();
Uri uri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
String selection = MediaStore.Audio.Media.TITLE;
String[] selectionArgs = {songTitle};
String[] projection = {MediaStore.Audio.Media._ID};
String sortOrder = MediaStore.Audio.Media.TITLE + " ASC";
Cursor cursor = cr.query(uri, projection, selection, selectionArgs, sortOrder);
if (cursor != null) {
while (cursor.moveToNext()) {
int idIndex = cursor.getColumnIndex(MediaStore.Audio.Media._ID);
id = Long.parseLong(cursor.getString(idIndex));
}
}
return id;
只有当标题不为空时,这才有效。有没有直接从 mp3 文件的路径直接从 MediaStore 获取歌曲 ID 的方法?
最佳答案
我会回答我自己的问题,因为我找到了解决方案。解决方案是用 DATA 替换 TITLE,因为 DATA 代表 MediaStore 中媒体文件的路径。
public static long getSongIdFromMediaStore(String songPath, Context context) {
long id = 0;
ContentResolver cr = context.getContentResolver();
Uri uri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
String selection = MediaStore.Audio.Media.DATA;
String[] selectionArgs = {songPath};
String[] projection = {MediaStore.Audio.Media._ID};
String sortOrder = MediaStore.Audio.Media.TITLE + " ASC";
Cursor cursor = cr.query(uri, projection, selection + "=?", selectionArgs, sortOrder);
Log.d(Constants.LOG_TAG, songPath);
if (cursor != null) {
while (cursor.moveToNext()) {
int idIndex = cursor.getColumnIndex(MediaStore.Audio.Media._ID);
id = Long.parseLong(cursor.getString(idIndex));
}
}
return id;
}
关于android - 如果我知道路径,如何从 MediaStore 获取歌曲 ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35394152/
我是一名优秀的程序员,十分优秀!