18 lines
324 B
C#
18 lines
324 B
C#
namespace AlicizaX.UI
|
|
{
|
|
public interface IAdapter
|
|
{
|
|
int GetItemCount();
|
|
|
|
int GetRealCount();
|
|
|
|
string GetViewName(int index);
|
|
|
|
void OnBindViewHolder(ViewHolder viewHolder, int index);
|
|
|
|
void OnRecycleViewHolder(ViewHolder viewHolder);
|
|
|
|
void NotifyDataChanged();
|
|
}
|
|
}
|