DATAS SEGMENT ;此处输入数据段代码 messg0 db ' Phone Seach System$' messg1 db 'No Record!$' messg2 db 'Please Input your name:$' messg3 db 'Please Input your phone number:$' messg4 db '0:Input, 1:Search, 2:Over!$' messg5 db 'Name Number$' messg6 db 'Please In
电话号码输入框需求:
三位,七位后有空格
删除倒数第四,第八位会将空格也删除
使用TextWatcher
When an object of a type is attached to an Editable, its methods will be called when the text is changed.就是说,只要是一个可编辑的文本设置了TextWatcher,当文本发生变化时,TextWatcher里的方法将会被调用.
其实不难,看了网上搜索到的例子,思路绕了点,这边做一份