1
2
3
4
5
6
7
8
9
10
11
12
| package com.mylhyl.circledialog.view.listener;
|
| import android.widget.ImageView;
| import android.widget.TextView;
|
| /**
| * Created by hupei on 2018/6/13.
| */
|
| public interface OnCreateTitleListener {
| void onCreateTitle(ImageView titleIcon, TextView title, TextView subTitle);
| }
|
|