haijiang
2018-04-18 1b6d4163ff60828aa6e5043ad29d2167801caac7
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
package com.moral.andbrickslib.views.bubbleseekbar;
 
import android.support.annotation.ColorInt;
import android.support.annotation.IntRange;
 
 
/**
 * config BubbleSeekBar's attributes
 * <p/>
 * Created by woxingxiao on 2017-03-14.
 */
public class BubbleConfigBuilder {
 
    float min;
    float max;
    float progress;
    boolean floatType;
    int trackSize;
    int secondTrackSize;
    int thumbRadius;
    int thumbRadiusOnDragging;
    int trackColor;
    int secondTrackColor;
    int thumbColor;
    int sectionCount;
    boolean showSectionMark;
    boolean autoAdjustSectionMark;
    boolean showSectionText;
    int sectionTextSize;
    int sectionTextColor;
    @BubbleSeekBar.TextPosition
    int sectionTextPosition;
    int sectionTextInterval;
    boolean showThumbText;
    int thumbTextSize;
    int thumbTextColor;
    boolean showProgressInFloat;
    boolean touchToSeek;
    boolean seekBySection;
    int bubbleColor;
    int bubbleTextSize;
    int bubbleTextColor;
    boolean alwaysShowBubble;
 
    private BubbleSeekBar mBubbleSeekBar;
 
    BubbleConfigBuilder(BubbleSeekBar bubbleSeekBar) {
        mBubbleSeekBar = bubbleSeekBar;
    }
 
    public void build() {
        mBubbleSeekBar.config(this);
    }
 
    public BubbleConfigBuilder min(float min) {
        this.min = min;
        this.progress = min;
        return this;
    }
 
    public BubbleConfigBuilder max(float max) {
        this.max = max;
        return this;
    }
 
    public BubbleConfigBuilder progress(float progress) {
        this.progress = progress;
        return this;
    }
 
    public BubbleConfigBuilder floatType() {
        this.floatType = true;
        return this;
    }
 
    public BubbleConfigBuilder trackSize(int dp) {
        this.trackSize =BubbleUtils.dp2px(dp);
        return this;
    }
 
    public BubbleConfigBuilder secondTrackSize(int dp) {
        this.secondTrackSize = BubbleUtils.dp2px(dp);
        return this;
    }
 
    public BubbleConfigBuilder thumbRadius(int dp) {
        this.thumbRadius = BubbleUtils.dp2px(dp);
        return this;
    }
 
    public BubbleConfigBuilder thumbRadiusOnDragging(int dp) {
        this.thumbRadiusOnDragging = BubbleUtils.dp2px(dp);
        return this;
    }
 
    public BubbleConfigBuilder trackColor(@ColorInt int color) {
        this.trackColor = color;
        this.sectionTextColor = color;
        return this;
    }
 
    public BubbleConfigBuilder secondTrackColor(@ColorInt int color) {
        this.secondTrackColor = color;
        this.thumbColor = color;
        this.thumbTextColor = color;
        this.bubbleColor = color;
        return this;
    }
 
    public BubbleConfigBuilder thumbColor(@ColorInt int color) {
        this.thumbColor = color;
        return this;
    }
 
    public BubbleConfigBuilder sectionCount(@IntRange(from = 1) int count) {
        this.sectionCount = count;
        return this;
    }
 
    public BubbleConfigBuilder showSectionMark() {
        this.showSectionMark = true;
        return this;
    }
 
    public BubbleConfigBuilder autoAdjustSectionMark() {
        this.autoAdjustSectionMark = true;
        return this;
    }
 
    public BubbleConfigBuilder showSectionText() {
        this.showSectionText = true;
        return this;
    }
 
    public BubbleConfigBuilder sectionTextSize(int sp) {
        this.sectionTextSize = BubbleUtils.sp2px(sp);
        return this;
    }
 
    public BubbleConfigBuilder sectionTextColor(@ColorInt int color) {
        this.sectionTextColor = color;
        return this;
    }
 
    public BubbleConfigBuilder sectionTextPosition(@BubbleSeekBar.TextPosition int position) {
        this.sectionTextPosition = position;
        return this;
    }
 
    public BubbleConfigBuilder sectionTextInterval(@IntRange(from = 1) int interval) {
        this.sectionTextInterval = interval;
        return this;
    }
 
    public BubbleConfigBuilder showThumbText() {
        this.showThumbText = true;
        return this;
    }
 
    public BubbleConfigBuilder thumbTextSize(int sp) {
        this.thumbTextSize = BubbleUtils.sp2px(sp);
        return this;
    }
 
    public BubbleConfigBuilder thumbTextColor(@ColorInt int color) {
        thumbTextColor = color;
        return this;
    }
 
    public BubbleConfigBuilder showProgressInFloat() {
        this.showProgressInFloat = true;
        return this;
    }
 
    public BubbleConfigBuilder touchToSeek() {
        this.touchToSeek = true;
        return this;
    }
 
    public BubbleConfigBuilder seekBySection() {
        this.seekBySection = true;
        return this;
    }
 
    public BubbleConfigBuilder bubbleColor(@ColorInt int color) {
        this.bubbleColor = color;
        return this;
    }
 
    public BubbleConfigBuilder bubbleTextSize(int sp) {
        this.bubbleTextSize = BubbleUtils.sp2px(sp);
        return this;
    }
 
    public BubbleConfigBuilder bubbleTextColor(@ColorInt int color) {
        this.bubbleTextColor = color;
        return this;
    }
 
    public BubbleConfigBuilder alwaysShowBubble() {
        this.alwaysShowBubble = true;
        return this;
    }
 
    public float getMin() {
        return min;
    }
 
    public float getMax() {
        return max;
    }
 
    public float getProgress() {
        return progress;
    }
 
    public boolean isFloatType() {
        return floatType;
    }
 
    public int getTrackSize() {
        return trackSize;
    }
 
    public int getSecondTrackSize() {
        return secondTrackSize;
    }
 
    public int getThumbRadius() {
        return thumbRadius;
    }
 
    public int getThumbRadiusOnDragging() {
        return thumbRadiusOnDragging;
    }
 
    public int getTrackColor() {
        return trackColor;
    }
 
    public int getSecondTrackColor() {
        return secondTrackColor;
    }
 
    public int getThumbColor() {
        return thumbColor;
    }
 
    public int getSectionCount() {
        return sectionCount;
    }
 
    public boolean isShowSectionMark() {
        return showSectionMark;
    }
 
    public boolean isAutoAdjustSectionMark() {
        return autoAdjustSectionMark;
    }
 
    public boolean isShowSectionText() {
        return showSectionText;
    }
 
    public int getSectionTextSize() {
        return sectionTextSize;
    }
 
    public int getSectionTextColor() {
        return sectionTextColor;
    }
 
    public int getSectionTextPosition() {
        return sectionTextPosition;
    }
 
    public int getSectionTextInterval() {
        return sectionTextInterval;
    }
 
    public boolean isShowThumbText() {
        return showThumbText;
    }
 
    public int getThumbTextSize() {
        return thumbTextSize;
    }
 
    public int getThumbTextColor() {
        return thumbTextColor;
    }
 
    public boolean isShowProgressInFloat() {
        return showProgressInFloat;
    }
 
    public boolean isTouchToSeek() {
        return touchToSeek;
    }
 
    public boolean isSeekBySection() {
        return seekBySection;
    }
 
    public int getBubbleColor() {
        return bubbleColor;
    }
 
    public int getBubbleTextSize() {
        return bubbleTextSize;
    }
 
    public int getBubbleTextColor() {
        return bubbleTextColor;
    }
 
    public boolean isAlwaysShowBubble() {
        return alwaysShowBubble;
    }
}