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

前端 未结 8 963
北海茫月
北海茫月 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:37

    Use android:inputType="numberDecimal".

    EDIT: Saw that you later wrote that you want to use this as an editText for IP numbers. Don't use my solution then. For "digits" (not numbers) plus the dot this won't work.

提交回复
热议问题