Java android.widget MultiAutoCompleteTextView fields, constructors, methods, implement or subclass

Example usage for Java android.widget MultiAutoCompleteTextView fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.widget MultiAutoCompleteTextView.

The text is from its open source code.

Subclass

android.widget.MultiAutoCompleteTextView has subclasses.
Click this link to see all its subclasses.

Method

voidsetAdapter(T adapter)

Changes the list of data used for auto completion.

voidsetOnItemSelectedListener(AdapterView.OnItemSelectedListener l)

Sets the listener that will be notified when the user selects an item in the drop down list.

voidsetThreshold(int threshold)

Specifies the minimum number of characters the user has to type in the edit box before the drop down list is shown.

When threshold is less than or equals 0, a threshold of 1 is applied.

voidsetTokenizer(Tokenizer t)
Sets the Tokenizer that will be used to determine the relevant range of the text where the user is typing.
voidshowDropDown()

Displays the drop down on screen.