AnderWeb / discreteSeekBar

Apache License 2.0
2.11k stars 400 forks source link

Set Bubble Text #43

Closed xsorifc28 closed 8 years ago

xsorifc28 commented 8 years ago

Is it possible to set the bubble text based on progress value?

xsorifc28 commented 8 years ago

Found the solution :)

discreteSeekBar.setNumericTransformer(new DiscreteSeekBar.NumericTransformer() {
        @Override
        public int transform(int value) {
            ...
        }

        @Override
        public String transformToString(int value) {
           ...
        }

        @Override
        public boolean useStringTransform() {
            return true;
        }
    });
}