allow only number and period(.) in edit text in android

前端 未结 8 993
北海茫月
北海茫月 2020-12-17 09:16

i want to allow only numbers and period(.) in a android edit text. How to do this .. can any body help?

8条回答
  •  Happy的楠姐
    2020-12-17 09:51

    i have set this two lines in the textedit from my your_class.xml

    android:inputType="numberDecimal"
    android:digits="0123456789."
    

    the first line is for setting the keybordart (only numbers and the dot). the second line only allows predetermined characters.

提交回复
热议问题