Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently developing an android app and one of the features is to select numerical values of large ranges. What is the best way to allow the user to select the number from, a spinner (android version of a dropdownlist) or a picker (mainly used to select time and date)? I need to ensure high efficiency in the app, so that users do not need to do much to get the number.

share|improve this question

closed as not a real question by Ram kiran, Dipak Keshariya, Matteo, mah, Nik Reiman Nov 2 '12 at 14:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

use a validated EditText (with numbers keyboard hint) or , Use three pickers for each digit.

share|improve this answer

use a validated autocomplete bind value with it and when user write text it give suggestion to pick value.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.