kimi
2021-02-18 749a5510a9f014446a3cd6ba57b3cb0cc8148dc1
1
2
3
4
5
6
7
8
9
10
11
12
package com.mylhyl.circledialog.callback;
 
import android.widget.TextView;
 
/**
 * Created by hupei on 2019/4/22 15:46.
 */
public interface CircleItemViewBinder<T> {
 
    void onBinder(TextView itemView, T item, int position);
 
}