I'm looking for something like the individual parts of the date picker dialog. A view that allows you to input integers (and only integers) that you can limit (between 1 and 10 for example), where you can use the keyboard or the arrows in the view itself. Does it exists?

It is for a dialog. A ready-made dialog to request an integer would also help.

link|improve this question

feedback

3 Answers

up vote 22 down vote accepted

The NumberPicker widget is probably what you want. Unfortunatly it's located in com.android.internal.Widget.NumberPicker which we cannot get to through normal means.

There are two ways to use it:

  1. Copy the code from android source
  2. Use reflection to access the widget

Here's the xml for using it in a layout:

<com.android.internal.widget.NumberPicker
    android:id="@+id/picker"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

Here's the reflection to set the NumberPicker settings (I have not tested this):

Object o = findViewById(R.id.picker);
Class c = o.getClass();
try 
{
    Method m = c.getMethod("setRange", int.class, int.class);
    m.invoke(o, 0, 9);
} 
catch (Exception e) 
{
    Log.e("", e.getMessage());
}

Since it's an internal widget and not in the SDK, future compatibility could be broken if you use reflection. It would be safest to roll your own from the source.

The original source for this informaiton is here:

http://groups.google.com/group/android-developers/browse_frm/thread/65da9820998fddc9/6151cc9800e6a04d#6151cc9800e6a04d

link|improve this answer
1  
How does one actually read the value from the NumberPicker? – kb. Jul 20 '11 at 12:52
feedback

The NumberPicker internal widget has been pulled from the Android source code and packaged for your use and you can find it here. Works great!

link|improve this answer
link appears to be broken! – Alan Moore Oct 16 '11 at 16:19
@AlanMoore so it seems.... Here's the source of it I used in my open source app: code.google.com/p/tippytipper/source/browse/trunk/… – Bryan Denny Oct 16 '11 at 21:12
feedback

As has been mentioned elsewhere, NumberPicker is now available in the Android SDK as of API 11 (Android 3.0):

http://developer.android.com/reference/android/widget/NumberPicker.html

For Android < 3.0, you can use the code here:
https://github.com/novak/numpicker-demo
https://github.com/mrn/numberpicker

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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