Reputation: 37
I have a Recycler View list. I want to refesh the Recycler View on TextView value change
Upvotes: 0
Views: 596
Reputation: 2130
Did you try? :
textMessage = (EditText)findViewById(R.id.textMessage);
textMessage.addTextChangedListener(new TextWatcher(){
public void afterTextChanged(Editable s) {
//Refresh your view, make network calls to server or something
}
});
Upvotes: 1