1
wxr
2023-04-23 2cd55265ccff3b0a267d7953b2dd9e5dca437aa6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * @ProjectName: null
 * @Copyright: null
 * @address: https://www.ys7.com
 * @date: 2014-6-5 下午4:41:40
 * @Description: null
 */
package com.videogo.remoteplayback.list.querylist;
 
import com.videogo.remoteplayback.list.bean.ClickedListItem;
 
public interface RemoteListClickListener {
 
    void onMoreBtnClick(int position, boolean notExpand);
 
    void onListItemClick(ClickedListItem playClickItem);
 
}