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 ,它支持旧版平台上的兼容功能。

当您在布局中使用CheckedTextView时,这将自动使用。 编写自定义视图时,您只需手动使用此类。

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)

使用指定的资源ID将复选标记设置为drawable。

void setTextAppearance(Context context, int resId)

此方法已弃用。 改为使用setTextAppearance(int)

Protected methods

void drawableStateChanged()

只要视图的状态发生变化,就会调用此函数,使得它影响所显示的可绘制状态。

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)

使用指定的资源ID将复选标记设置为drawable。

当这个视图被选中时,drawable的状态集将包含 state_checked

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

setTextAppearance

void setTextAppearance (Context context, 
                int resId)

此方法已弃用。
改为使用setTextAppearance(int)

设置指定TextAppearance资源中的文本颜色,大小,样式,提示颜色和高亮颜色。

Parameters
context Context
resId int

Protected methods

drawableStateChanged

void drawableStateChanged ()

只要视图的状态发生变化,就会调用此函数,使得它影响所显示的可绘制状态。

如果View有一个StateListAnimator,它也将被调用来运行必要的状态改变动画。

重写此功能时,一定要调用超类。

Hooray!