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

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

    You should use the att:

    android:digits="0123456789."

    http://developer.android.com/reference/android/widget/TextView.html#attr_android:digits

提交回复
热议问题