How to hide keyboard for samsung galaxy note programmatically in android
问题 I am using data and time picker for two edit text, I want to hide keyboard for two edit text.I am doing like this mDatePickerEdt = (EditText)findViewById(R.id.createwedding_datepicker_edt); mTimePickerEdt = (EditText)findViewById(R.id.createwedding_timepicker_edt); mDatePickerEdt.setInputType(InputType.TYPE_NULL); mTimePickerEdt.setInputType(InputType.TYPE_NULL); it is working for smart phones.I getting problem in samsung galaxy note.If any one have idea.Please help, Thanks in advance. 回答1: