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

Class Overview

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

[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
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.
[Expand]
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

public AppCompatRadioButton (Context context)

public AppCompatRadioButton (Context context, AttributeSet attrs)

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