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

前端 未结 8 1014
北海茫月
北海茫月 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条回答
  •  一个人的身影
    2020-12-17 09:50

    Currently, specific default input types (numeric, phone number) use KeyListener. You'll just have to implement it to verify your data, and use setKeyListener in your EditText.

提交回复
热议问题