1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.mylhyl.circledialog.view.listener;
|
| import android.widget.EditText;
| import android.widget.RelativeLayout;
| import android.widget.TextView;
|
| /**
| * Created by hupei on 2018/6/13.
| */
|
| public interface OnCreateInputListener {
| void onCreateText(RelativeLayout inputLayout, EditText inputView, TextView counterView);
| }
|
|