10 lines
265 B
Plaintext
10 lines
265 B
Plaintext
|
package com.novelbook.android.utils;
|
||
|
|
||
|
import android.view.View;
|
||
|
|
||
|
public interface OnItemClickListener {
|
||
|
void onItemClick(View view, int position);
|
||
|
void onItemLongClick(View view , int position);
|
||
|
void onLinearOutClick(View view,int position,int llid);
|
||
|
}
|