Most visited

Recently visited

Added in API level 11

NumberPicker.Formatter

public static interface NumberPicker.Formatter

android.widget.NumberPicker.Formatter


Interface used to format current value into a string for presentation.

Summary

Public methods

abstract String format(int value)

Formats a string representation of the current value.

Public methods

format

Added in API level 11
String format (int value)

Formats a string representation of the current value.

Parameters
value int: The currently selected value.
Returns
String A formatted string representation.

Hooray!