Most visited

Recently visited

AppCompatRadioButton

public class AppCompatRadioButton
extends RadioButton implements TintableCompoundButton

java.lang.Object
   ↳ android.view.View
     ↳ android.widget.TextView
       ↳ android.widget.Button
         ↳ android.widget.CompoundButton
           ↳ android.widget.RadioButton
             ↳ android.support.v7.widget.AppCompatRadioButton


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

This will automatically be used when you use RadioButton 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

AppCompatRadioButton(Context context)
AppCompatRadioButton(Context context, AttributeSet attrs)
AppCompatRadioButton(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.RadioButton
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

AppCompatRadioButton

AppCompatRadioButton (Context context)

Parameters
context Context

AppCompatRadioButton

AppCompatRadioButton (Context context, 
                AttributeSet attrs)

Parameters
context Context
attrs AttributeSet

AppCompatRadioButton

AppCompatRadioButton (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!