Android APIs
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

Class Overview

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

[Expand]
Inherited XML Attributes
From class android.widget.CompoundButton
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
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.
[Expand]
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

public AppCompatCheckBox (Context context)

public AppCompatCheckBox (Context context, AttributeSet attrs)

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

Public Methods

public int getCompoundPaddingLeft ()

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

public void setButtonDrawable (int resId)

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

Parameters
resId the resource identifier of the drawable

public void setButtonDrawable (Drawable buttonDrawable)

Sets a drawable as the compound button image.

Parameters
buttonDrawable the drawable to set