New, made an app with number picker, works ok But instead of drag, if I tap the number picker, the keyboard pop up and I can type anything in there. How to deactivate this? to make it uneditable.
Asked
Active
Viewed 3,290 times
1 Answers
13
Here you have the answer: Disable soft keyboard on NumberPicker
And basically is this:
myNumberPicker.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);
Or put this in the .xml:
android:descendantFocusability="blocksDescendants"

Community
- 1
- 1

Marc LaQuay
- 199
- 1
- 6