Niestety, obiekt ContentResolver nie może wysyłać zapytań o argument ograniczenia. W twoim ContentProvider twój MySQLQueryBuilder może zapytać o dodanie dodatkowego parametru limitu.
Po agendzie możemy dodać dodatkową regułę URI do ContentProvider.
static final int ELEMENTS_LIMIT = 5;
public static final UriMatcher uriMatcher;
static {
uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
........
uriMatcher.addURI(AUTHORITY, "elements/limit/#", ELEMENTS_LIMIT);
}
Następnie w metodzie zapytania
String limit = null; //default....
switch(uriMatcher.match(uri)){
.......
case ELEMENTS_LIMIT:
limit = uri.getPathSegments().get(2);
break;
......
}
return mySQLBuilder.query(db, projection, selection, selectionArgs, null, null, sortOrder, limit);
Zapytania ContentProvider z działalności.
uri = Uri.parse("content://" + ContentProvider.AUTHORITY + "/elements/limit/" + 1);
//In My case I want to sort and get the greatest value in an X column. So having the column sorted and limiting to 1 works.
Cursor query = resolver.query(uri,
new String[]{YOUR_COLUMNS},
null,
null,
(X_COLUMN + " desc"));
Po prostu pomysł. Ale możesz spróbować umieścić klauzulę limitu jako ostatni parametr. Tak jak w przypadku activity.managedQuery (playlistUri, null, null, null, "limit 3")? – Renard