Disable soft keyboard on NumberPicker

前端 未结 11 1140
庸人自扰
庸人自扰 2020-12-22 18:20

I\'m trying to deactivate the soft keyboard when using a NumberPicker to enter numerical values (for aesthetic reasons). This is my layout-xml-code:



        
11条回答
  •  一个人的身影
    2020-12-22 18:58

    Just found this and it works like a charm:

    myNumberPicker.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);

    You can also set this in XML:

    android:descendantFocusability="blocksDescendants" 
    

提交回复
热议问题