I am trying to query data from sqlite db through CursorLoader. When i go through the documentation in android developer website, i can\'t find the limit query.
Cu
You can use SQLiteQueryBuilder methods whose provides ability to have LIMIT clause.
Or You can just append LIMIT to Yours selection string.
Also, there's an option to provide limit via uri (as part of it) and handle it in your ContentProvider.
Looks like CursorLoader is not providing any API for it currently.