How to retrieve songs with given ids

54 Views Asked by At

I try to retrieve songs from MediaStore.Audio.Media.EXTERNAL_CONTENT_URI with given songs ids:

@Override
public Loader<Cursor> onCreateLoader(int i, Bundle bundle) {

    String selection = MediaStore.Audio.Media._ID + "=?";
    String[] ids = getDataFromDb();
    String[] test= {"151", "150"};
    return new CursorLoader(getActivity(), MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, null, selection, ids, null);
}

I tried both String[] ids = getDataFromDb(); and String[] test = {"151", "150"}; just in case.

Below you can check getDataFromDb() method:

public String[] getDataFromDb(){
    SQLiteDatabase database = dbHelper.getReadableDatabase();
    String[] proj = {FavouritesContract.FavouritesEntry._ID, FavouritesContract.FavouritesEntry.SONG_ID};
    Cursor cursor = database.query(FavouritesContract.FavouritesEntry.TABLE_NAME, null, null, null, null, null, null);
    String[] ids = new String[cursor.getCount()];
    int i = 0;
    while(cursor.moveToNext()){
        String id = cursor.getString(cursor.getColumnIndex("song_id"));
        ids[i] = id;
        i++;
    }
    cursor.close();
    return ids;
}

String[] fills with ids with no problem, and if there is only one id it is not a problem as well, but when CursorLoader starts to retrieve more than one song (two, three and more) I got the error:

E/AndroidRuntime: FATAL EXCEPTION: AsyncTask #4
              Process: comvoroninlevan.httpsgithub.simplymusic, PID: 24588
              java.lang.RuntimeException: An error occurred while executing doInBackground()
                  at android.os.AsyncTask$3.done(AsyncTask.java:309)
                  at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:354)
                  at java.util.concurrent.FutureTask.setException(FutureTask.java:223)
                  at java.util.concurrent.FutureTask.run(FutureTask.java:242)
                  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
                  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
                  at java.lang.Thread.run(Thread.java:818)
               Caused by: java.lang.IllegalArgumentException: Cannot bind argument at index 2 because the index is out of range.  The statement has 1 parameters.
                  at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:165)
                  at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:135)
                  at android.content.ContentProviderProxy.query(ContentProviderNative.java:421)
                  at android.content.ContentResolver.query(ContentResolver.java:502)
                  at android.content.CursorLoader.loadInBackground(CursorLoader.java:64)
                  at android.content.CursorLoader.loadInBackground(CursorLoader.java:42)
                  at android.content.AsyncTaskLoader.onLoadInBackground(AsyncTaskLoader.java:312)
                  at android.content.AsyncTaskLoader$LoadTask.doInBackground(AsyncTaskLoader.java:69)
                  at android.content.AsyncTaskLoader$LoadTask.doInBackground(AsyncTaskLoader.java:57)
                  at android.os.AsyncTask$2.call(AsyncTask.java:295)
                  at java.util.concurrent.FutureTask.run(FutureTask.java:237)
                  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113) 
                  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588) 
                  at java.lang.Thread.run(Thread.java:818) 

Will appreciate of any hint, link or answer. Thank you in advance.

0

There are 0 best solutions below