2025-11-20 15:40:38 +08:00
|
|
|
namespace AlicizaX.UI
|
2025-03-12 20:59:12 +08:00
|
|
|
{
|
|
|
|
|
public interface IAdapter
|
|
|
|
|
{
|
|
|
|
|
int GetItemCount();
|
|
|
|
|
|
|
|
|
|
int GetRealCount();
|
|
|
|
|
|
|
|
|
|
string GetViewName(int index);
|
|
|
|
|
|
|
|
|
|
void OnBindViewHolder(ViewHolder viewHolder, int index);
|
|
|
|
|
|
2026-03-27 18:38:29 +08:00
|
|
|
void OnRecycleViewHolder(ViewHolder viewHolder);
|
|
|
|
|
|
2025-03-12 20:59:12 +08:00
|
|
|
void NotifyDataChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|