1 |
efrain |
1 |
package com.cesams.twogetskills.skeleton;
|
|
|
2 |
|
|
|
3 |
import android.view.ViewGroup;
|
|
|
4 |
|
|
|
5 |
import androidx.recyclerview.widget.RecyclerView;
|
|
|
6 |
|
|
|
7 |
import com.cesams.twogetskills.entity.UserLog;
|
|
|
8 |
|
|
|
9 |
public interface ITimelineDelegateAdapter {
|
|
|
10 |
|
|
|
11 |
public static int HEADER = 1;
|
|
|
12 |
public static int LINE = 2;
|
|
|
13 |
public static int ITEM = 3;
|
|
|
14 |
|
|
|
15 |
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType);
|
|
|
16 |
public void onBindViewHolder(RecyclerView.ViewHolder holder, UserLog userlog);
|
|
|
17 |
}
|