Last active
December 5, 2020 04:33
-
-
Save vamsitallapudi/32e60c724c7447b89ce9e0734155ccf4 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
override fun onBindViewHolder(postsViewHolder : ViewHolder, position: Int) { | |
val post = posts[position] | |
holder.title!!.text = post.title | |
holder.description!!.text = post.description | |
holder.hashtags.text = AppUtils.convertListToStr(post.hashTags) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment