0

I won't remove text after creating token in TokenAutoComplete library in xamarin android.

bellow is my code

_searchView.Text= _searchView.Text.Replace(text, string.Empty);  
_searchView.PerformCompletion();
_searchView.AddObject(collaborator);

I also use below code

_searchView.ClearComposingText();
Adil Saiyad
  • 1,582
  • 2
  • 17
  • 34

1 Answers1

0

Do you want to clear the text of the AutoCompleteTextView? If yes, you can try the following code:

 _searchView.SetText("",false);
Jessie Zhang -MSFT
  • 9,830
  • 1
  • 7
  • 19