onTextChanged vs afterTextChanged in Android - Live examples needed
Asked Answered
D

3

26

I was reading about TextWatcher in Android programming. I could not understand the difference between afterTextChanged() and onTextChanged().

Although I referred to Differences between TextWatcher 's onTextChanged, beforeTextChanged and afterTextChanged, I am still not able to think of a situation when I would need to use onTextChanged() and not afterTextChanged().

Destructive answered 18/11, 2014 at 10:48 Comment(0)
D
25

I found an explanation to this on Android Dev Portal

http://developer.android.com/reference/android/text/TextWatcher.html

**abstract void afterTextChanged(Editable s)**
This method is called to notify you that, somewhere within s, the text has been changed.

**abstract void beforeTextChanged(CharSequence s, int start, int count, int after)**
This method is called to notify you that, within s, the count characters beginning at start are about to be replaced by new text with length after.

**abstract void onTextChanged(CharSequence s, int start, int before, int count)**
This method is called to notify you that, within s, the count characters beginning at start have just replaced old text that had length before.

So, the differences between the two are:

  • I can change my text using afterTextChanged while onTextChanged does not allow me to do that
  • onTextChanged gives me the offset of what changed where, while afterTextChanged does not
Destructive answered 18/11, 2014 at 12:39 Comment(0)
E
6

Just adding something to Pratik Dasa's answer and the discussion with @SimpleGuy in the comments, since I have not enough reputation to comment.

The three methods are also triggered by EditText.setText("your string here"). That would make a length of 16 (in this case), so count isn't always 1.

Please note that the parameter list is not the same for the three methods:

abstract void afterTextChanged(Editable s)
abstract void beforeTextChanged(CharSequence s, int start, int count, int after)
abstract void onTextChanged(CharSequence s, int start, int before, int count)

And this is where the difference is between afterTextChanged and onTextChanged: the parameters.

Please also have a look at the accepted answer in this thread: Android TextWatcher.afterTextChanged vs TextWatcher.onTextChanged

Encamp answered 25/9, 2016 at 14:21 Comment(1)
Also when pasting some text to EditText a count won't be 1.Sparid
A
-6

here is the explanation:

onTextChanged : This means when you start typing, like you want to write "sports" then this will call on each and every character, like it will call when you pressed "s" then again "p" then "o" and so on...

afterTextChanged : This will call when you stop typing, it will calls after you completely wrote "sport", that is the main diffrence.

YOUR_EDIT_TEXT.addTextChangedListener(new TextWatcher() {

                    @Override
                    public void onTextChanged(CharSequence s, int start, int before, int count) {

                    //Your query to fetch Data
                    }

                    @Override
                    public void beforeTextChanged(CharSequence s, int start, int count, int after) {

                    }

                    @Override
                    public void afterTextChanged(Editable s) {
                        if (s.length() > 0) {

                            //Your query to fetch Data
                        }
                    }
                });
Axum answered 18/11, 2014 at 10:53 Comment(10)
But, how does it know I stopped typing ? I give pause (even nanosecs) but it is a pause.. and android does not know that I am going to type "s" "p" .. so on.. how does it knows that I am going to type further.. like I type "spor" .. done.. so will it be called ? or say I type "sport" then will it be called.. if yes.. then it is called twice.. sory can't understand the diffDestructive
@Destructive Ofcourse Android knows it, OS have some criteria obviously to fetch the delay between typed character and using it could conclude. Android must have some criteria to identify it.Axum
I read at android developer portal. [link](developer.android.com/reference/android/text/…, int, int, int)) It says for onTextChanged - "This method is called to notify you that, within s, the count characters beginning at start have just replaced" - why "characters" (plural) when you say it is for each character ? Why would count be needed at all, if you say that it is called for each character (count = 1)Destructive
@Destructive Docs is right, in onTextChanged() method, when you type characters it will replaces each character with previous one typed. Right!!!Axum
So basically.. I am still not clear about the differenceDestructive
Don't get me wrong.. i appreciate your efforts.. but it is that I am not able to understand the differenceDestructive
@Destructive its crystal clear now, I dont know why you can not getting this. I suggest you to if you can not getting things then please adopt the thing which is mentioned in docs, becase dont waste your time to find out the answer, you will get it soon once when you will be champ in development.Axum
Based on some tests now, this answer ("will fire when stopped typing") is not correct. Both methods fire at the same time, and with the same s.toString() contentRibble
@Destructive One example of why it is "characters" (plural) is because of pasting from the clipboard. The user can select a word of text and paste a previously copied word over it. Then count and after will both be > 1.Specific
complete nonsense, this answer should be blocked. If it worked so, on-the-fly text formatting would be impossible.Cyclamate

© 2022 - 2024 — McMap. All rights reserved.