質問

I am trying to implement NumberPicker in my application. I want the view to be as show in Dialogs Guide,which is

standard number picker

what i get when i implement the number picker

implemented number picker

Also, i do not want to have text selected when i tap on selected item, from scroller

P.S. I tried searching around google and SO, but could not find correct answer for my question

  1. I implemented solution provided here at SO.
  2. Have already defined listener for value changed.
  3. Tutorial/Guide is here, it just a quick overview of NumberPicker widget.

I want to implement view similar to standard number picker

役に立ちましたか?

解決

I think that depends on theme used

See NumberPicker at developer.android.com

Class Overview topic:

A widget that enables the user to select a number form a predefined range. There are two flavors of this widget and which one is presented to the user depends on the current theme.

If the current theme is derived from Theme the widget presents the current value as an editable input field with an increment button above and a decrement button below. Long pressing the buttons allows for a quick change of the current value. Tapping on the input field allows to type in a desired value.

If the current theme is derived from Theme_Holo or Theme_Holo_Light the widget presents the current value as an editable input field with a lesser value above and a greater value below. Tapping on the lesser or greater value selects it by animating the number axis up or down to make the chosen value current. Flinging up or down allows for multiple increments or decrements of the current value. Long pressing on the lesser and greater values also allows for a quick change of the current value. Tapping on the current value allows to type in a desired value.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top