имеется метод getListOfPhoneCallsById(id: Long). Это метод должен возвращать список все звонков из calllog начиная с введенного id. Например, мы ввели 3, значит я жду логи с айдишниками 4,5,6 и так далее. Мой метод не работает, выкидывает IllegalArgumentException с сообщением Cannot bind argument at index 1 because the index is out of range. The statement has 0 parameters.
Можете посмотреть мой метод и подсказать, где я накосячил в запросе?
https://gist.github.com/LAHomieJob/162c4dbc58ae9edd7f82a002600ff718
getContentResolver().query( UserDictionary.Words.CONTENT_URI, // The content URI of the words table mProjection, // The columns to return for each row mSelectionClause // Selection criteria mSelectionArgs, // Selection criteria mSortOrder); // The sort order for the returned rows Здесь ошибка
Обсуждают сегодня