Configure android EditText to allow decimals and negatives

后端 未结 2 643
陌清茗
陌清茗 2021-02-11 14:37

I have an Android EditText that I want to have the number keyboard come up.

If I set the android:inputType to numberSigned, I get the number keyboard and t

2条回答
  •  无人及你
    2021-02-11 15:42

    You are just missing this in your EditText,

    android:inputType="numberDecimal|numberSigned"
    

提交回复
热议问题