Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created March 7, 2020 11:42
Show Gist options
  • Select an option

  • Save PatilShreyas/d1f8bb1d2f15827c3c03a284fdb6c370 to your computer and use it in GitHub Desktop.

Select an option

Save PatilShreyas/d1f8bb1d2f15827c3c03a284fdb6c370 to your computer and use it in GitHub Desktop.
fun changeQuery() {
val newQuery = mBaseQuery
.orderByChild("timestamp")
.limitToLast(100)
// Make new options
val newOptions = FirebaseRecyclerOptions.Builder<Post>()
.setQuery(newQuery, Post::class.java)
.build()
// Change options of adapter.
mAdapter.updateOptions(newOptions)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment