Android APIs
public class

TintAutoCompleteTextView

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

Class Overview

An tint aware AutoCompleteTextView.

This will automatically be used when you use AutoCompleteTextView in your layouts. You should only need to manually use this class 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
TintAutoCompleteTextView(Context context)
TintAutoCompleteTextView(Context context, AttributeSet attrs)
TintAutoCompleteTextView(Context context, AttributeSet attrs, int defStyleAttr)
Public Methods
void setDropDownBackgroundResource(int id)

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

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.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 TintAutoCompleteTextView (Context context)

public TintAutoCompleteTextView (Context context, AttributeSet attrs)

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

Public Methods

public void setDropDownBackgroundResource (int id)

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

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

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.