Android APIs
public class

TintCheckedTextView

extends CheckedTextView
java.lang.Object
   ↳ android.view.View
     ↳ android.widget.TextView
       ↳ android.widget.CheckedTextView
         ↳ android.support.v7.internal.widget.TintCheckedTextView

Class Overview

An tint aware CheckedTextView.

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

[Expand]
Inherited XML Attributes
From class android.widget.CheckedTextView
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
TintCheckedTextView(Context context)
TintCheckedTextView(Context context, AttributeSet attrs)
TintCheckedTextView(Context context, AttributeSet attrs, int defStyleAttr)
Public Methods
void setCheckMarkDrawable(int resid)
Set the checkmark to a given Drawable, identified by its resourece id.
[Expand]
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

public TintCheckedTextView (Context context)

public TintCheckedTextView (Context context, AttributeSet attrs)

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

Public Methods

public void setCheckMarkDrawable (int resid)

Set the checkmark to a given Drawable, identified by its resourece id. This will be drawn when isChecked() is true.

Parameters
resid The Drawable to use for the checkmark.