-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathReactSlider.java
296 lines (246 loc) · 9.01 KB
/
ReactSlider.java
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
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
* directory of this source tree.
*/
package com.reactnativecommunity.slider;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.drawable.BitmapDrawable;
import android.os.Build;
import android.util.AttributeSet;
import android.view.accessibility.AccessibilityEvent;
import android.view.accessibility.AccessibilityManager;
import androidx.appcompat.widget.AppCompatSeekBar;
import java.net.URL;
import java.util.List;
import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import javax.annotation.Nullable;
import com.facebook.react.modules.i18nmanager.I18nUtil;
/**
* Slider that behaves more like the iOS one, for consistency.
*
* <p>On iOS, the value is 0..1. Android SeekBar only supports integer values. For consistency, we
* pretend in JS that the value is 0..1 but set the SeekBar value to 0..100.
*
* <p>Note that the slider is _not_ a controlled component (setValue isn't called during dragging).
*/
public class ReactSlider extends AppCompatSeekBar {
/**
* If step is 0 (unset) we default to this total number of steps. Don't use 100 which leads to
* rounding errors (0.200000000001).
*/
private static int DEFAULT_TOTAL_STEPS = 128;
/**
* We want custom min..max range. Android only supports 0..max range so we implement this
* ourselves.
*/
private double mMinValue = 0;
private double mMaxValue = 0;
/**
* Value sent from JS (setState). Doesn't get updated during drag (slider is not a controlled
* component).
*/
private double mValue = 0;
private boolean isSliding = false;
/** If zero it's determined automatically. */
private double mStep = 0;
private double mStepCalculated = 0;
private String mAccessibilityUnits;
private List<String> mAccessibilityIncrements;
/** Real limit value based on min and max values. This comes from props */
private double mRealLowerLimit = Long.MIN_VALUE;
/** Lower limit based on the SeekBar progress 0..total steps */
private int mLowerLimit;
/** Real limit value based on min and max values. This comes from props */
private double mRealUpperLimit = Long.MAX_VALUE;
/** Upper limit based on the SeekBar progress 0..total steps */
private int mUpperLimit;
public ReactSlider(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
I18nUtil sharedI18nUtilInstance = I18nUtil.getInstance();
super.setLayoutDirection(sharedI18nUtilInstance.isRTL(context) ? LAYOUT_DIRECTION_RTL : LAYOUT_DIRECTION_LTR);
disableStateListAnimatorIfNeeded();
}
private void disableStateListAnimatorIfNeeded() {
// We disable the state list animator for Android 6 and 7; this is a hack to prevent T37452851
// and https://github.com/facebook/react-native/issues/9979
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M
&& Build.VERSION.SDK_INT < Build.VERSION_CODES.O) {
super.setStateListAnimator(null);
}
}
/* package */ void setMaxValue(double max) {
mMaxValue = max;
updateAll();
}
/* package */ void setMinValue(double min) {
mMinValue = min;
updateAll();
}
/* package */ void setValue(double value) {
mValue = value;
updateValue();
}
/* package */ void setStep(double step) {
mStep = step;
updateAll();
}
/* package */ void setLowerLimit(double value) {
mRealLowerLimit = value;
updateLowerLimit();
}
/* package */ void setUpperLimit(double value) {
mRealUpperLimit = value;
updateUpperLimit();
}
int getLowerLimit() {
return this.mLowerLimit;
}
int getUpperLimit() {
return this.mUpperLimit;
}
boolean isSliding() {
return isSliding;
}
void isSliding(boolean isSliding) {
this.isSliding = isSliding;
}
void setAccessibilityUnits(String accessibilityUnits) {
mAccessibilityUnits = accessibilityUnits;
}
void setAccessibilityIncrements(List<String> accessibilityIncrements) {
mAccessibilityIncrements = accessibilityIncrements;
}
@Override
public void onPopulateAccessibilityEvent(AccessibilityEvent event) {
super.onPopulateAccessibilityEvent(event);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
if (event.getEventType() == AccessibilityEvent.TYPE_VIEW_ACCESSIBILITY_FOCUSED ||
(event.getEventType() == AccessibilityEvent.TYPE_VIEW_SELECTED && this.isAccessibilityFocused())) {
this.setupAccessibility((int)mValue);
}
}
}
@Override
public void announceForAccessibility(CharSequence text) {
Context ctx = this.getContext();
final AccessibilityManager manager = (AccessibilityManager) ctx.getSystemService(Context.ACCESSIBILITY_SERVICE);
if (manager.isEnabled()) {
final AccessibilityEvent e = AccessibilityEvent.obtain();
e.setEventType(AccessibilityEvent.TYPE_ANNOUNCEMENT);
e.setClassName(this.getClass().getName());
e.setPackageName(ctx.getPackageName());
e.getText().add(text);
TimerTask task = new TimerTask() {
@Override
public void run() {
manager.sendAccessibilityEvent(e);
}
};
Timer timer = new Timer();
timer.schedule(task, 1000);
}
}
public void setupAccessibility(int index) {
if (mAccessibilityUnits != null && mAccessibilityIncrements != null && mAccessibilityIncrements.size() - 1 == (int)mMaxValue) {
String sliderValue = mAccessibilityIncrements.get(index);
int stringLength = mAccessibilityUnits.length();
String spokenUnits = mAccessibilityUnits;
if (sliderValue != null && Integer.parseInt(sliderValue) == 1) {
spokenUnits = spokenUnits.substring(0, stringLength - 1);
}
this.announceForAccessibility(String.format("%s %s", sliderValue, spokenUnits));
}
}
/**
* Convert SeekBar's native progress value (e.g. 0..100) to a value passed to JS (e.g. -1.0..2.5).
*/
public double toRealProgress(int seekBarProgress) {
if (seekBarProgress == getMax()) {
return mMaxValue;
}
return seekBarProgress * getStepValue() + mMinValue;
}
/** Update underlying native SeekBar's values. */
private void updateAll() {
if (mStep == 0) {
mStepCalculated = (mMaxValue - mMinValue) / (double) DEFAULT_TOTAL_STEPS;
}
setMax(getTotalSteps());
setKeyProgressIncrement(1);
updateLowerLimit();
updateUpperLimit();
updateValue();
}
/** Update limit based on props limit, max and min */
private void updateLowerLimit() {
double limit = Math.max(mRealLowerLimit, mMinValue);
mLowerLimit = (int) Math.round((limit - mMinValue) / (mMaxValue - mMinValue) * getTotalSteps());
}
/** Update limit based on props limit, max and min */
private void updateUpperLimit() {
double limit = Math.min(mRealUpperLimit, mMaxValue);
mUpperLimit = (int) Math.round((limit - mMinValue) / (mMaxValue - mMinValue) * getTotalSteps());
}
/** Update value only (optimization in case only value is set). */
private void updateValue() {
setProgress((int) Math.round((mValue - mMinValue) / (mMaxValue - mMinValue) * getTotalSteps()));
}
private int getTotalSteps() {
return (int) Math.ceil((mMaxValue - mMinValue) / getStepValue());
}
private double getStepValue() {
return mStep > 0 ? mStep : mStepCalculated;
}
private BitmapDrawable getBitmapDrawable(final String uri) {
BitmapDrawable bitmapDrawable = null;
ExecutorService executorService = Executors.newSingleThreadExecutor();
Future<BitmapDrawable> future = executorService.submit(new Callable<BitmapDrawable>() {
@Override
public BitmapDrawable call() {
BitmapDrawable bitmapDrawable = null;
try {
Bitmap bitmap = null;
if (uri.startsWith("http://") || uri.startsWith("https://") ||
uri.startsWith("file://") || uri.startsWith("asset://") || uri.startsWith("data:")) {
bitmap = BitmapFactory.decodeStream(new URL(uri).openStream());
} else {
int drawableId = getResources()
.getIdentifier(uri, "drawable", getContext()
.getPackageName());
bitmap = BitmapFactory.decodeResource(getResources(), drawableId);
}
bitmapDrawable = new BitmapDrawable(getResources(), bitmap);
} catch (Exception e) {
e.printStackTrace();
}
return bitmapDrawable;
}
});
try {
bitmapDrawable = future.get();
} catch (Exception e) {
e.printStackTrace();
}
return bitmapDrawable;
}
public void setThumbImage(final String uri) {
if (uri != null) {
setThumb(getBitmapDrawable(uri));
// Enable alpha channel for the thumbImage
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
setSplitTrack(false);
}
} else {
setThumb(getThumb());
}
}
}