Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ public void afterTextChanged(Editable s) {
}
if (mTextChangedEventHandler != null) {
com.facebook.litho.widget.EditText.dispatchTextChangedEvent(
mTextChangedEventHandler, s.toString());
mTextChangedEventHandler, EditTextWithEventHandlers.this, s.toString());
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,15 @@

package com.facebook.litho.widget;

import android.widget.EditText;
import com.facebook.litho.annotations.Event;

/**
* Event sent by EditText when the text entered by the user changes.
*/
@Event
public class TextChangedEvent {

public EditText view;
public String text;
}
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ public EditTextWithEventHandlers(Context context) {
protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
super.onTextChanged(text, start, lengthBefore, lengthAfter);
if (mTextChangedEventHandler != null) {
TextInput.dispatchTextChangedEvent(mTextChangedEventHandler, text.toString());
TextInput.dispatchTextChangedEvent(mTextChangedEventHandler, EditTextWithEventHandlers.this, text.toString());
}
}

Expand Down