We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have adapter of FirebaseRecyclerAdapter, How can I implement SectionTitleProvider.
mAdapter = new FirebaseRecyclerAdapter<MyModel, MyHolder>(MyModel.class, R.layout.row_layout_list, MyHolder.class, postsQuery) { @Override protected void populateViewHolder(MyHolder viewHolder, MyModel quotes, int position) { viewHolder.bindTo(quotes); } @Override public MyHolder onCreateViewHolder(ViewGroup parent, int viewType) { return super.onCreateViewHolder(parent, viewType); } };
Is there any way to use with FirebaseRecyclerAdapter?
The text was updated successfully, but these errors were encountered:
Just like with any other Adapter, you extend the FirebaseRecyclerAdapter and implement SectionTitleProvider in that class.
Sorry, something went wrong.
No branches or pull requests
I have adapter of FirebaseRecyclerAdapter, How can I implement SectionTitleProvider.
Is there any way to use with FirebaseRecyclerAdapter?
The text was updated successfully, but these errors were encountered: