recyclerview dependency
implementation 'com.android.support:recyclerview-v7:23.1.1'
recyclerview dependency
implementation 'com.android.support:recyclerview-v7:23.1.1'
recyclerview onCreateViewHolder kotlin
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
// Inflate the custom view from xml layout file
val v: View = LayoutInflater.from(parent?.context)
.inflate(R.layout.custom_view, parent, false)
// Return the view holder
return ViewHolder(
v
)
}
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
// Display the current user full name and location in view holder custom view
holder?.name?.text = list.get(position).description
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us