Created
April 20, 2020 08:04
-
-
Save hafizrahman/12eac3c3d95e3ab49865b76d2ba6147b to your computer and use it in GitHub Desktop.
Put in the two List<> as constructor parameters in RecyclerViewAdapter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SubjectRecyclerViewAdapter( | |
val subjects: List<Subject>, | |
val reminders: List<Reminder>, | |
val listener: OnListFragmentInteractionListener? | |
) : RecyclerView.Adapter<RecyclerView.ViewHolder>() { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment