android - How to define Textchanged event for edit text? -


how define textchanged event edittext??

thanks, balu.

you need this:

inputview.addtextchangedlistener(new textwatcher() {        @override       public void ontextchanged(charsequence s, int start, int before, int count) {        }        @override       public void beforetextchanged(charsequence s, int start, int count, int after) {        }        @override       public void aftertextchanged(editable s) {        }     }); 

Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -