Created
June 7, 2017 06:33
-
-
Save kalaiselvan369/4fa9b037d7b6cf4e975a3e6a1ee44b89 to your computer and use it in GitHub Desktop.
Number picker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NumberPicker picker = new NumberPicker(this); | |
picker.setMinValue(0); | |
picker.setMaxValue(2); | |
picker.setDisplayedValues( new String[] { "Belgium", "France", "United Kingdom" } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment