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