Android中关闭DatePicker和NumberPicker等Picker类的可编辑模式

DatePicker、TimePicker、NumberPicker等控件在由于默认是可编辑的,所以会经常跳出键盘。要屏蔽这些编辑模式只需要如下代码:

picker.setDescendantFocusability(DatePicker.FOCUS_BLOCK_DESCENDANTS);  

其他的TimePicker和NumberPicker也是一样的道理。

原文地址:https://www.cnblogs.com/wytings/p/5260332.html