Android ContentResolver在我的设备上找不到音乐

时间:2013-04-03 04:05:37

标签: android android-contentresolver playlists

当我使用原始的Google音乐播放器时,我的应用程序运行正常。它找到了歌曲和播放列表,没问题。自从我开始使用Play Music以来,我的应用程序找不到任何此类内容。这是我的代码:

    Cursor cursor = contentResolver.query(uri, null, MediaStore.Audio.Media.IS_MUSIC + " = 1", null, null);

    if (cursor == null || !cursor.moveToFirst()) {
        Log.e(TAG, "Could not locate any music on device.");
        return;
    }

    cursor.close();

任何想法为什么会这样。我刚收到第一个投诉,那些购买我的应用程序的人无法播放音乐。

1 个答案:

答案 0 :(得分:3)

也许它已经晚了,但我这样做了:

String[] projection = {
            MediaStore.Audio.Media._ID,
            MediaStore.Audio.Media.ARTIST,
            MediaStore.Audio.Media.TITLE,
            MediaStore.Audio.Media.DATA,
            MediaStore.Audio.Media.DISPLAY_NAME,
            MediaStore.Audio.Media.ALBUM_ID,
            MediaStore.Audio.Media.DURATION
    };
    String selection = MediaStore.Audio.Media.IS_MUSIC + " != 0";
    Cursor cursor = context.getContentResolver().query(
            MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
            projection,
            selection,
            null,
            null);