Last active
September 22, 2020 17:02
-
-
Save alkjez/84d349b97f8d338abf108ec443d752ac to your computer and use it in GitHub Desktop.
This file contains hidden or 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
public class MessageListAdapter extends RecyclerView.Adapter { | |
private Context mContext; | |
private List<BaseMessage> mMessageList; | |
public MessageListAdapter(Context context, List<BaseMessage> messageList) { | |
mContext = context; | |
mMessageList = messageList; | |
} | |
} |
nknilesh46
commented
Sep 22, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment