SugarAdapter make a custom wrapper for RecyclerView.ViewHolder and only expose onBindData() method, which make it impossible to call other bind data method from the original RecyclerView.ViewHolder, such as:
public void onBindViewHolder(VH holder, int position, List<Object> payloads) {
onBindViewHolder(holder, position);
}
plz consider to add this method to SugarViewHolder as well.
problem description
onBindData()
method, which make it impossible to call other bind data method from the original RecyclerView.ViewHolder, such as:plz consider to add this method to
SugarViewHolder
as well.