张海江
2017-08-07 957b8e9d4bc63524dad27c2f8458856da0bf5c06
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.moral.andbrickslib.baseadapter.recyclerview.base;
 
 
/**
 * Created by zhy on 16/6/22.
 */
public interface ItemViewDelegate<T>
{
 
    int getItemViewLayoutId();
 
    boolean isForViewType(T item, int position);
 
    void convert(ViewHolder holder, T t, int position);
 
}