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; | |
} | |
} |
what is it ??????? the basemessage ?
Hello @mohammadeslim22,
BaseMessage is class from SDK SendBird Android.
Add compile in build.gradle from SDK SendBird to build a class.
carlosalexandresm thank you
but how can i use it
when i copied the code i have error in that part (Base Message)
carlosalexandresm thank you
but how can i use it
when i copied the code i have error in that part (Base Message)
compile 'com.sendbird.sdk:sendbird-android-sdk:3.0.27'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
what is the BaseMessage class ?