TimePicker Dialog when pressing EditText
Add these properties to your EditText
tag in xml to disable keyboard popping up
android:editable="false"
and
android:focusable="false"
UPDATE:
android:editable="false"
is deprecated now.
use android:inputType="none"
instead or in the code:
editText.setEnabled(false);