BuildView.java
1.12 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.mylhyl.circledialog;
import android.view.View;
/**
* Created by hupei on 2017/3/29.
*/
public interface BuildView {
/**
* 生成根布局
*/
void buildRoot();
/**
* 生成标题布局
*/
void buildTitle();
/**
* 生成文本布局
*/
void buildText();
/**
* 刷新文本内容
*/
void refreshText();
/**
* 生成列表布局
*/
void buildItems();
/**
* 生成列表按钮
*/
void buildItemsButton();
/**
* 刷新列表内容
*/
void refreshItems();
/**
* 生成进度条布局
*/
void buildProgress();
/**
* 刷新进度条
*/
void refreshProgress();
/**
* 生成输入布局
*/
void buildInput();
/**
* 生成多按钮布局
*/
void buildMultipleButton();
/**
* 生成单个按钮布局
*/
void buildSingleButton();
/**
* 注册输入框确定事件
*/
void regInputListener();
/**
* 取出根布局
*
* @return 对话框视图
*/
View getView();
}