ShowView.java
2.6 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.cnlive.gundam.stream.model;
/**
* Created by Lynn on 5/23/2017.
*/
public class ShowView {
//开始直播按钮
private boolean startBtn = true;
//结束页面
private boolean endLayout = false;
//重试页面
private boolean retryLayout = false;
//结束页面的提示文字(红色文字)
private boolean msgHint = false;
//自动重连提示文字(黄色文字)
private boolean autoRecMsg = false;
//推流美颜等按钮的显示
private boolean recordBtns = true;
//美颜按钮
private boolean beautifulBtn = false;
//闪光灯
private boolean flashBtn = false;
//聊天recyclerview
private boolean chatView = false;
//聊天室人数
private boolean viewers = false;
//自动重连的提示文字
private boolean autoRectTxt;
public ShowView() {
}
public boolean isStartBtn() {
return startBtn;
}
public void setStartBtn(boolean startBtn) {
this.startBtn = startBtn;
}
public boolean isEndLayout() {
return endLayout;
}
public void setEndLayout(boolean endLayout) {
this.endLayout = endLayout;
}
public boolean isRetryLayout() {
return retryLayout;
}
public void setRetryLayout(boolean retryLayout) {
this.retryLayout = retryLayout;
}
public boolean isMsgHint() {
return msgHint;
}
public void setMsgHint(boolean msgHint) {
this.msgHint = msgHint;
}
public boolean isAutoRecMsg() {
return autoRecMsg;
}
public void setAutoRecMsg(boolean autoRecMsg) {
this.autoRecMsg = autoRecMsg;
}
public boolean isAutoRectTxt() {
return autoRectTxt;
}
public boolean isRecordBtns() {
return recordBtns;
}
public void setRecordBtns(boolean recordBtns) {
this.recordBtns = recordBtns;
}
public boolean isBeautifulBtn() {
return beautifulBtn;
}
public void setBeautifulBtn(boolean beautifulBtn) {
this.beautifulBtn = beautifulBtn;
}
public boolean isFlashBtn() {
return flashBtn;
}
public void setFlashBtn(boolean flashBtn) {
this.flashBtn = flashBtn;
}
public void setAutoRectTxt(boolean autoRectTxt) {
this.autoRectTxt = autoRectTxt;
}
public boolean isChatView() {
return chatView;
}
public void setChatView(boolean chatView) {
this.chatView = chatView;
}
public boolean isViewers() {
return viewers;
}
public void setViewers(boolean viewers) {
this.viewers = viewers;
}
}