Most visited

Recently visited

AppCompatCheckedTextView

public class AppCompatCheckedTextView
extends CheckedTextView

java.lang.Object
   ↳ android.view.View
     ↳ android.widget.TextView
       ↳ android.widget.CheckedTextView
         ↳ android.support.v7.widget.AppCompatCheckedTextView


A CheckedTextView which supports compatible features on older version of the platform.

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

Summary

Inherited XML attributes

From class android.widget.CheckedTextView
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

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

Public methods

void setCheckMarkDrawable(int resId)

Sets the check mark to the drawable with the specified resource ID.

void setTextAppearance(Context context, int resId)

This method is deprecated. Use setTextAppearance(int) instead.

Protected methods

void drawableStateChanged()

This function is called whenever the state of the view changes in such a way that it impacts the state of drawables being shown.

Inherited methods

From class android.widget.CheckedTextView
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

Public constructors

AppCompatCheckedTextView

AppCompatCheckedTextView (Context context)

Parameters
context Context

AppCompatCheckedTextView

AppCompatCheckedTextView (Context context, 
                AttributeSet attrs)

Parameters
context Context
attrs AttributeSet

AppCompatCheckedTextView

AppCompatCheckedTextView (Context context, 
                AttributeSet attrs, 
                int defStyleAttr)

Parameters
context Context
attrs AttributeSet
defStyleAttr int

Public methods

setCheckMarkDrawable

void setCheckMarkDrawable (int resId)

Sets the check mark to the drawable with the specified resource ID.

When this view is checked, the drawable's state set will include state_checked.

Parameters
resId int: the resource identifier of drawable to use as the check mark

setTextAppearance

void setTextAppearance (Context context, 
                int resId)

This method is deprecated.
Use setTextAppearance(int) instead.

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

Parameters
context Context
resId int

Protected methods

drawableStateChanged

void drawableStateChanged ()

This function is called whenever the state of the view changes in such a way that it impacts the state of drawables being shown.

If the View has a StateListAnimator, it will also be called to run necessary state change animations.

Be sure to call through to the superclass when overriding this function.

Hooray!