TAdapterDelegate.java 243 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10
package com.yidianling.avchatkit.common.adapter;

public interface TAdapterDelegate {

    public int getViewTypeCount();

    public Class<? extends TViewHolder> viewHolderAtPosition(int position);

    public boolean enabled(int position);
}