1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| package com.mylhyl.circledialog.view.listener;
|
| import android.content.DialogInterface;
| import android.view.View;
|
| import com.mylhyl.circledialog.CircleViewHolder;
|
| /**
| * Created by hupei on 2020/5/20.
| * <p>
| * 功能描述:
| * <p>
| * <ul>
| * 业务逻辑说明:
| * <li></li>
| * </ul>
| * <p>
| * <ul>
| * 注意事项:
| * <li></li>
| * </ul>
| * <p>
| * <ul>
| * 变更记录:
| * <li></li>
| * </ul>
| *
| * @author hupei
| * @since 5.3.1
| */
| public interface OnShowListener {
|
| void onShow(DialogInterface dialog, CircleViewHolder viewHolder);
|
| }
|
|