-
Notifications
You must be signed in to change notification settings - Fork 43
Scale
mlabuda edited this page Feb 18, 2014
·
3 revisions
- Scale / AbstractScale
- DefaultScale
Look up a scale with index 0
Scale scale = new DefaultScale(0);
Set focus on the scale
scale.setFocus();
Get current value
int current = scale.getSelection();
Get minimum value
int min = scale.getMinimum();
Get maximum value
int min = scale.getMaximum();
Set value to 100
scale.setSelection(100);