Only show number buttons on Soft Keyboard in Android?

前端 未结 8 1439
栀梦
栀梦 2020-12-01 10:06

On the soft keyboard in Android you can set the soft keyboard to show the numbers instead of a-z keyboard using android:inputType=\"numberDecimal\". However, wh

8条回答
  •  温柔的废话
    2020-12-01 10:51

    The accepted answer didn't work for me. It kept showing other unwanted characters

    I found a way to accomplish the behavior I wanted by changing the inputType to numberPassword and then disabling the password dots

    textInput.inputType = InputType.TYPE_CLASS_NUMBER or InputType.TYPE_NUMBER_VARIATION_PASSWORD
    textInput.transformationMethod = SingleLineTransformationMethod()
    

提交回复
热议问题