Skip to content Skip to sidebar Skip to footer

How To Refresh The Recycler View On Textview Change

I have a Recycler View list. I want to refesh the Recycler View on TextView value change

Solution 1:

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
  }
});

Post a Comment for "How To Refresh The Recycler View On Textview Change"