Android APIs
public class

AppCompatMultiAutoCompleteTextView

extends MultiAutoCompleteTextView
implements TintableBackgroundView
java.lang.Object
   ↳ android.view.View
     ↳ android.widget.TextView
       ↳ android.widget.EditText
         ↳ android.widget.AutoCompleteTextView
           ↳ android.widget.MultiAutoCompleteTextView
             ↳ android.support.v7.widget.AppCompatMultiAutoCompleteTextView

Class Overview

A MultiAutoCompleteTextView which supports compatible features on older version of the platform, including:

This will automatically be used when you use MultiAutoCompleteTextView in your layouts. You should only need to manually use this class when writing custom views.

Summary

[Expand]
Inherited XML Attributes
From class android.widget.AutoCompleteTextView
From class android.widget.TextView
From class android.view.View
[Expand]
Inherited Constants
From class android.view.View
[Expand]
Inherited Fields
From class android.view.View
Public Constructors
AppCompatMultiAutoCompleteTextView(Context context)
AppCompatMultiAutoCompleteTextView(Context context, AttributeSet attrs)
AppCompatMultiAutoCompleteTextView(Context context, AttributeSet attrs, int defStyleAttr)
Public Methods
void setBackgroundDrawable(Drawable background)
This method is deprecated. use setBackground(Drawable) instead
void setBackgroundResource(int resId)
Set the background to a given resource.
void setDropDownBackgroundResource(int resId)

Sets the background of the auto-complete drop-down list.

void setTextAppearance(Context context, int resId)
This method is deprecated. Use setTextAppearance(int) instead.
Protected Methods
void drawableStateChanged()
This function is called whenever the state of the view changes in such a way that it impacts the state of drawables being shown.
[Expand]
Inherited Methods
From class android.widget.MultiAutoCompleteTextView
From class android.widget.AutoCompleteTextView
From class android.widget.EditText
From class android.widget.TextView
From class android.view.View
From class java.lang.Object
From interface android.widget.Filter.FilterListener
From interface android.view.ViewTreeObserver.OnPreDrawListener
From interface android.graphics.drawable.Drawable.Callback
From interface android.view.KeyEvent.Callback
From interface android.view.accessibility.AccessibilityEventSource
From interface android.support.v4.view.TintableBackgroundView

Public Constructors

public AppCompatMultiAutoCompleteTextView (Context context)

public AppCompatMultiAutoCompleteTextView (Context context, AttributeSet attrs)

public AppCompatMultiAutoCompleteTextView (Context context, AttributeSet attrs, int defStyleAttr)

Public Methods

public void setBackgroundDrawable (Drawable background)

This method is deprecated.
use setBackground(Drawable) instead

public void setBackgroundResource (int resId)

Set the background to a given resource. The resource should refer to a Drawable object or 0 to remove the background.

Parameters
resId The identifier of the resource.

public void setDropDownBackgroundResource (int resId)

Sets the background of the auto-complete drop-down list.

Parameters
resId the id of the drawable to set as the background

public void setTextAppearance (Context context, int resId)

This method is deprecated.
Use setTextAppearance(int) instead.

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

Protected Methods

protected void drawableStateChanged ()

This function is called whenever the state of the view changes in such a way that it impacts the state of drawables being shown.

If the View has a StateListAnimator, it will also be called to run necessary state change animations.

Be sure to call through to the superclass when overriding this function.