added in version 25.1.0
belongs to Maven artifact com.android.support:appcompat-v7:28.0.0-alpha1

AppCompatButton

public class AppCompatButton
extends Button implements TintableBackgroundView

java.lang.Object
   ↳ android.view.View
     ↳ android.widget.TextView
       ↳ android.widget.Button
         ↳ android.support.v7.widget.AppCompatButton
Known Direct Subclasses


A Button which supports compatible features on older versions of the platform, including:

This will automatically be used when you use Button in your layouts and the top-level activity / dialog is provided by appcompat. You should only need to manually use this class when writing custom views.

Summary

Inherited constants

From class android.widget.TextView
From class android.view.View

Inherited fields

From class android.view.View

Public constructors

AppCompatButton(Context context)
AppCompatButton(Context context, AttributeSet attrs)
AppCompatButton(Context context, AttributeSet attrs, int defStyleAttr)

Public methods

void onInitializeAccessibilityEvent(AccessibilityEvent event)
void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info)
void setBackgroundDrawable(Drawable background)
void setBackgroundResource(int resId)
void setSupportAllCaps(boolean allCaps)

Sets the properties of this field to transform input to ALL CAPS display.

void setTextAppearance(Context context, int resId)
void setTextSize(int unit, float size)

Protected methods

void drawableStateChanged()
void onLayout(boolean changed, int left, int top, int right, int bottom)
void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter)

Inherited methods

From class android.widget.Button
From class android.widget.TextView
From class android.view.View
From class java.lang.Object
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

AppCompatButton

added in version 25.1.0
AppCompatButton (Context context)

Parameters
context Context

AppCompatButton

added in version 25.1.0
AppCompatButton (Context context, 
                AttributeSet attrs)

Parameters
context Context

attrs AttributeSet

AppCompatButton

added in version 25.1.0
AppCompatButton (Context context, 
                AttributeSet attrs, 
                int defStyleAttr)

Parameters
context Context

attrs AttributeSet

defStyleAttr int

Public methods

onInitializeAccessibilityEvent

void onInitializeAccessibilityEvent (AccessibilityEvent event)

Parameters
event AccessibilityEvent

onInitializeAccessibilityNodeInfo

void onInitializeAccessibilityNodeInfo (AccessibilityNodeInfo info)

Parameters
info AccessibilityNodeInfo

setBackgroundDrawable

added in version 26.1.0
void setBackgroundDrawable (Drawable background)

Parameters
background Drawable

setBackgroundResource

void setBackgroundResource (int resId)

Parameters
resId int

setSupportAllCaps

added in version 25.1.0
void setSupportAllCaps (boolean allCaps)

Sets the properties of this field to transform input to ALL CAPS display. This may use a "small caps" formatting if available. This setting will be ignored if this field is editable or selectable. This call replaces the current transformation method. Disabling this will not necessarily restore the previous behavior from before this was enabled.

Parameters
allCaps boolean

setTextAppearance

added in version 26.1.0
void setTextAppearance (Context context, 
                int resId)

Parameters
context Context

resId int

setTextSize

void setTextSize (int unit, 
                float size)

Parameters
unit int

size float

Protected methods

drawableStateChanged

void drawableStateChanged ()

onLayout

void onLayout (boolean changed, 
                int left, 
                int top, 
                int right, 
                int bottom)

Parameters
changed boolean

left int

top int

right int

bottom int

onTextChanged

void onTextChanged (CharSequence text, 
                int start, 
                int lengthBefore, 
                int lengthAfter)

Parameters
text CharSequence

start int

lengthBefore int

lengthAfter int