I'm using a NumberPicker
and I want to add a suffix for each number.
I know that I can do this:
picker.setFormatter(new NumberPicker.Formatter() {
@Override
public String format(int value) {
return value + " suffix");
}
});
But I want the suffix to be a subscript. So I tried this:
picker.setFormatter(new NumberPicker.Formatter() {
@Override
public String format(int value) {
return value + " " + Html.fromHtml("<sub>suffix</sub>")
}
});
But it's not working - the format is not applied; the suffix is not a subscript. That's obviously because fromHtml
returns Spanned
and then I'm converting it to String
.
So can I apply an Html formatted string on the picker?
Create custom
NumberPicker
and overrideaddView
methods: