xml中直接设置属性输入类型只能为数字

android:inputType="number"

但是这种无法再次输入其他类型


解决方法:

mEditText.setRawInputType(InputType.TYPE_CLASS_NUMBER);