TintableCheckedTextView

Interface which allows a android.widget.CheckedTextView to receive tinting calls from CheckedTextViewCompat when running on API v20 devices or lower.

When used on a View annotated with androidx.resourceinspection.annotation.AppCompatShadowedAttributes, this interface implies that AppCompat shadows the platform's check mark tint attributes. See androidx.resourceinspection.processor for more details and a full mapping of attributes.

Functions

Link copied to clipboard
@Nullable
abstract fun getSupportCheckMarkTintList(): @Nullable ColorStateList
Returns the tint applied to the check mark drawable
Link copied to clipboard
abstract fun getSupportCheckMarkTintMode(): @Nullable PorterDuff.Mode
Returns the blending mode used to apply the tint to the check mark drawable
Link copied to clipboard
abstract fun setSupportCheckMarkTintList(@Nullable tint: @Nullable ColorStateList)
Applies a tint to the check mark drawable.
Link copied to clipboard
abstract fun setSupportCheckMarkTintMode(tintMode: @Nullable PorterDuff.Mode)
Specifies the blending mode which should be used to apply the tint specified by setSupportCheckMarkTintList to the check mark drawable.