Created
September 24, 2022 03:58
-
-
Save ravisorathiya/a6a1107eb56ed722782ed4d306f2583c to your computer and use it in GitHub Desktop.
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
import android.annotation.SuppressLint | |
import android.view.LayoutInflater | |
import android.view.ViewGroup | |
import androidx.recyclerview.widget.DiffUtil | |
import androidx.recyclerview.widget.ListAdapter | |
import androidx.recyclerview.widget.RecyclerView | |
class MyAdapter( | |
) : ListAdapter<Any, MyAdapter.MyViewHolder>( | |
DiffCallBack() | |
) { | |
override fun onCreateViewHolder( | |
parent: ViewGroup, | |
viewType: Int, | |
): MyViewHolder { | |
return MyViewHolder( | |
MyViewHolderBinding.inflate( | |
LayoutInflater.from( | |
parent.context | |
), parent, false | |
) | |
) | |
} | |
override fun onBindViewHolder(holderPaging: MyViewHolder, position: Int) { | |
val currentItem = getItem(position) | |
if (currentItem != null) | |
holderPaging.bind(currentItem) | |
} | |
inner class MyViewHolder(private val itemBinding: MyViewHolderBinding) : | |
RecyclerView.ViewHolder(itemBinding.root) { | |
init { | |
itemBinding.root.setOnClickListener { | |
val position = bindingAdapterPosition | |
if (position != RecyclerView.NO_POSITION) { | |
val item = getItem(position) | |
onChooseFilter(item) | |
} | |
} | |
} | |
@SuppressLint("SetTextI18n") | |
fun bind(item: Any) { | |
itemBinding.apply { | |
} | |
} | |
} | |
class DiffCallBack : DiffUtil.ItemCallback<Any>() { | |
override fun areItemsTheSame( | |
oldItem: Any, | |
newItem: Any, | |
): Boolean = | |
oldItem.hashCode() == newItem.hashCode() | |
@SuppressLint("DiffUtilEquals") | |
override fun areContentsTheSame( | |
oldItem: Any, | |
newItem: Any, | |
): Boolean = | |
oldItem == newItem | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment