Differences between TextWatcher 's onTextChanged, beforeTextChanged and afterTextChanged

AndroidTextwatcherAndroid Textwatcher

Android Problem Overview


In my Android project, I have had to add a TextChangedListener (TextWatcher) to an edit text view. And there are three parts to it:

  • onTextChanged()
  • beforeTextChanged()
  • afterTextChanged()

What are the differences of these three? I have had to implement a search of a table on the key listener and for my case all these three looked the same. Also they functioned the same. When I input a part of a product name, the table redraws with only those products that contain entered text in it. But I used the afterTextChanged() part. My code is:

EditProduct.addTextChangedListener(new TextWatcher() {

		@Override
		public void onTextChanged(CharSequence s, int start, int before,
				int count) {
			// TODO Auto-generated method stub

			// System.out.println("onTextChanged"+s);
		}

		@Override
		public void beforeTextChanged(CharSequence s, int start, int count,
				int after) {
			// TODO Auto-generated method stub
			// System.out.println("beforeTextChanged"+s);
		}

		@Override
		public void afterTextChanged(Editable s) {
			// TODO Auto-generated method stub
			// System.out.println("afterTextChanged"+s);

			String new_prx = s.toString();

			System.out.println(s);
			mini_productList = new ArrayList<Product>();

			// mini_productList
			int count = 0;
			if (new_prx.equals("")) {

				loadtableProducts(productList);

			} else {

				for (int i = 0; i < productList.size(); i++) {

					if (productList.get(i).getDescription().toString()
							.substring(0, (new_prx.length()))
							.equalsIgnoreCase(new_prx)) {
						mini_productList.add(productList.get(i));
						count++;

					}
				}

				loadtableProducts(mini_productList);
			}
		}
	});

So can someone give me an explanation on these three?

Android Solutions


Solution 1 - Android

The parameters for beforeTextChanged and onTextChanged are a little hard to understand at first. It may be helpful to see them being used in an example. Watch the following demonstration a few times. Pay attention to the counts.

  • The red highlight is the old text that is about to be replaced by the green text.
  • The green highlight is the new text that just replaced the red text.

enter image description here

beforeTextChanged

  • start is the start index of the red highlighted text (that is about to be deleted)
  • count is the length of the red highlighted text (that is about to be deleted)
  • after is the length of the green highlighted text (that is about to be added)

onTextChanged

  • start is the start index of the green highlighted text (that just got added).
    This is the same as the start of beforeTextChanged.
  • before is the length of the red highlighted text (that just got deleted).
    This is the same as the count of beforeTextChanged.
  • count is the length of the green highlighted text (that just got added).
    This is the same as the after of beforeTextChanged.

afterTextChanged

  • editable is the editable text from the EditText. You are allowed to change it here. Doing so will trigger all the TextWatcher events again.
  • You are not given any information about what was changed. If you want to know, you can set a span in onTextChanged and then look up the span here.

When to use which?

If you want to observe the changes being made, use beforeTextChanged() or onTextChanged(). You are not allowed to change the CharSequence text in either of these methods, though.

If you want to further modify the text after it was changed, do it in afterTextChanged().

Code

Here is the code if you want to play around with it yourself.

MainActivity.java

public class MainActivity extends AppCompatActivity {

    final static int RED_COLOR = Color.parseColor("#fb7373");
    final static int GREEN_COLOR = Color.parseColor("#40de83");

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        EditText editText = findViewById(R.id.editText);
        final TextView tvBeforeText = findViewById(R.id.tvBeforeText);
        final TextView tvBeforeNumbers = findViewById(R.id.tvBeforeNumbers);
        final TextView tvAfterText = findViewById(R.id.tvAfterText);
        final TextView tvAfterNumbers = findViewById(R.id.tvAfterNumbers);

        editText.addTextChangedListener(new TextWatcher() {
            @Override
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {
                SpannableString spannableString = new SpannableString(s);
                BackgroundColorSpan backgroundSpan = new BackgroundColorSpan(RED_COLOR);
                spannableString.setSpan(backgroundSpan, start, start + count, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
                tvBeforeText.setText(spannableString);
                tvBeforeNumbers.setText("start=" + start + "  count=" + count + " after=" + after);
            }

            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                SpannableString spannableString = new SpannableString(s);
                BackgroundColorSpan backgroundSpan = new BackgroundColorSpan(GREEN_COLOR);
                spannableString.setSpan(backgroundSpan, start, start + count, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
                tvAfterText.setText(spannableString);
                tvAfterNumbers.setText("start=" + start + " before=" + before + " count=" + count);
            }

            @Override
            public void afterTextChanged(Editable s) {
                Log.i("TAG", "afterTextChanged: " + s);
            }
        });
    }
}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="5dp">

    <EditText
        android:id="@+id/editText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:text="beforeTextChanged" />

    <TextView
        android:id="@+id/tvBeforeText"
        android:textSize="17sp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:id="@+id/tvBeforeNumbers"
        android:textSize="17sp"
        android:text="start=0 count=0 after=0"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:layout_marginTop="20dp"
        android:text="onTextChanged" />

    <TextView
        android:id="@+id/tvAfterText"
        android:textSize="17sp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:id="@+id/tvAfterNumbers"
        android:textSize="17sp"
        android:text="start=0 count=0 after=0"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

Solution 2 - Android

onTextChanged runs during the text changing.

afterTextChanged runs immediately after the text is changed.

beforeTextChanged runs the instant before the text is changed.

Depending on when you want to assign variables or do things, you may want to run the code the instant before the change, or the instant after.

Here is an example of this:

String afterTextChanged = "";
String beforeTextChanged = "";
String onTextChanged = "";

@Override
protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	setContentView(R.layout.activity_main);

	et = (EditText)findViewById(R.id.editText);
	
	et.addTextChangedListener(new TextWatcher() {

        @Override
        public void onTextChanged(CharSequence s, int st, int b, int c) 
        {
        	onTextChanged = et.getText().toString();
        }

        @Override
        public void beforeTextChanged(CharSequence s, int st, int c, int a) 
        {
        	beforeTextChanged = et.getText().toString();
        }

        @Override
        public void afterTextChanged(Editable s) 
        {
        	afterTextChanged = et.getText().toString();
        	Toast.makeText(Activity.this, "before: " + beforeTextChanged
                                           + '\n' + "on: " + onTextChanged 
                                           + '\n' + "after: " + afterTextChanged
                           ,Toast.LENGTH_SHORT).show();
        }
    });
}

In this case, let's say you changed the text from "h" to "hi", the output would be:

>before: "h"
on: "hi"
>after: "hi"

Solution 3 - Android

Android TextChangedListener is one kind of trigger which is called on text change of an input field.

TextChangedListener has three events.

1.beforeTextChanged : This means that the characters are about to be replaced with some new text. The text is uneditable. This event is used when you need to take a look at the old text which is about to change.

2.onTextChanged: Changes have been made, some characters have just been replaced. The text is uneditable. This event is used when you need to see which characters in the text are new.

3.afterTextChanged : The same as above, except now the text is editable. This event is used when you need to see and possibly edit new text.

Solution 4 - Android

> - 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.

You can more learn here.

Solution 5 - Android

> 1. afterTextChanged (Editable s) - This method is called when the text has been changed. Because any changes you make will cause this > method to be called again recursively, you have to be watchful about > performing operations here, otherwise it might lead to infinite loop. > > 2. 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. It is an error to attempt to make changes to s from > this callback. > > 3. 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. It is an error to attempt to make changes to s from > this callback.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSamantha WithanageView Question on Stackoverflow
Solution 1 - AndroidSuragchView Answer on Stackoverflow
Solution 2 - AndroidMichael YaworskiView Answer on Stackoverflow
Solution 3 - AndroidJigar PandyaView Answer on Stackoverflow
Solution 4 - AndroidKailash DabhiView Answer on Stackoverflow
Solution 5 - Androiduser2666607View Answer on Stackoverflow