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

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

 

picker.setDescendantFocusability(DatePicker.FOCUS_BLOCK_DESCENDANTS);  

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

 

posted @ 2016-03-13 11:34  RexWei  阅读(603)  评论(0编辑  收藏  举报