Android-使用字符串在MediaStore中搜索音乐



我基本上两周以上都无法完成这项工作。

我在几个问题上发布了大量的代码,但其中大多数都被忽略了,所以我不会在这个问题上大量使用我自己的代码,这些代码甚至都不会被阅读。

如何使用字符串搜索具有"LIKE"属性的MediaStore?

例如,我输入Shoot To Thrill,我会收到带有以下代码的歌曲ID:

if(cursor.moveToFirst()){
                    while(cursor.moveToNext()){
                        String title = cursor.getString(cursor.getColumnIndex(MediaStore.Audio.Media.TITLE));
                        String artist = cursor.getString(cursor.getColumnIndex(MediaStore.Audio.Media.ARTIST));
                        String id = cursor.getString(cursor.getColumnIndex(MediaStore.Audio.Media._ID));
                        test.setText(title +" " + artist + " " + id);
                    }
                }

这里有一个开始:

String[] projection = {
                            BaseColumns._ID,    
                            MediaStore.Audio.Artists.ARTIST,
                            MediaStore.Audio.Media.TITLE
                }
Cursor cursor = this.managedQuery(
                        MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, //uri
                        projection, //projection
                        //i dont know what to enter,
                        //i dont know what to enter,
                        MediaStore.Audio.Media.TITLE);

这只是隐藏在幕后的普通SQL。正常的LIKE操作应该可以正常工作。您可以像使用任何其他SQL查询一样使用MediaStore.Audio.Media.TITLE + " LIKE "%thrill%""

String[] projection = { BaseColumns._ID,
        MediaStore.Audio.Artists.ARTIST, MediaStore.Audio.Media.TITLE };
String where = MediaStore.Audio.Media.TITLE + " LIKE ?";
String[] params = new String[] { "%life%" };
Cursor q = managedQuery(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
        projection, where, params, MediaStore.Audio.Media.TITLE);
try {
    while (q.moveToNext()) {
        Log.e("song", q.getString(1) + " " + q.getString(2));
    }
} finally {
    q.close();
}

最新更新