Most visited

Recently visited

AppCompatCheckBox

public class AppCompatCheckBox
extends CheckBox implements TintableCompoundButton

java.lang.Object
   ↳ android.view.View
     ↳ android.widget.TextView
       ↳ android.widget.Button
         ↳ android.widget.CompoundButton
           ↳ android.widget.CheckBox
             ↳ android.support.v7.widget.AppCompatCheckBox


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

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

Summary

Inherited XML attributes

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

Inherited constants

From class android.view.View

Inherited fields

From class android.view.View

Public constructors

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

Public methods

int getCompoundPaddingLeft()

Returns the left padding of the view, plus space for the left Drawable if any.

void setButtonDrawable(int resId)

Sets a drawable as the compound button image given its resource identifier.

void setButtonDrawable(Drawable buttonDrawable)

Sets a drawable as the compound button image.

Inherited methods

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

Public constructors

AppCompatCheckBox

AppCompatCheckBox (Context context)

Parameters
context Context

AppCompatCheckBox

AppCompatCheckBox (Context context, 
                AttributeSet attrs)

Parameters
context Context
attrs AttributeSet

AppCompatCheckBox

AppCompatCheckBox (Context context, 
                AttributeSet attrs, 
                int defStyleAttr)

Parameters
context Context
attrs AttributeSet
defStyleAttr int

Public methods

getCompoundPaddingLeft

int getCompoundPaddingLeft ()

Returns the left padding of the view, plus space for the left Drawable if any.

Returns
int

setButtonDrawable

void setButtonDrawable (int resId)

Sets a drawable as the compound button image given its resource identifier.

Parameters
resId int: the resource identifier of the drawable

setButtonDrawable

void setButtonDrawable (Drawable buttonDrawable)

Sets a drawable as the compound button image.

Parameters
buttonDrawable Drawable: the drawable to set

Hooray!