Difference between MultiAutoCompleteTextView and AutoCompleteTextView

前端 未结 4 922
情深已故
情深已故 2021-02-01 12:20

Can someone explain the difference between MultiAutoCompleteTextView and AutoCompleteTextView?

4条回答
  •  [愿得一人]
    2021-02-01 12:34

    • AutocompleteTextView only offers suggestions about the whole sentence
    • MultiAutoCompleteTextView offers suggestions for every token in the sentence.

    You can specify what is the delimiter between tokens also set the first or any no. of characters using setThreshold() with MultiAutoCompeleteTextView control in Android.

提交回复
热议问题