View.BackgroundTintList Property

Definition

Return the tint applied to the background drawable, if specified. -or- Applies a tint to the background drawable.

public virtual Android.Content.Res.ColorStateList? BackgroundTintList { [Android.Runtime.Register("getBackgroundTintList", "()Landroid/content/res/ColorStateList;", "GetGetBackgroundTintListHandler")] get; [Android.Runtime.Register("setBackgroundTintList", "(Landroid/content/res/ColorStateList;)V", "GetSetBackgroundTintList_Landroid_content_res_ColorStateList_Handler")] set; }
[<get: Android.Runtime.Register("getBackgroundTintList", "()Landroid/content/res/ColorStateList;", "GetGetBackgroundTintListHandler")>]
[<set: Android.Runtime.Register("setBackgroundTintList", "(Landroid/content/res/ColorStateList;)V", "GetSetBackgroundTintList_Landroid_content_res_ColorStateList_Handler")>]
member this.BackgroundTintList : Android.Content.Res.ColorStateList with get, set

Property Value

the tint applied to the background drawable

Attributes

Remarks

Property getter documentation:

Return the tint applied to the background drawable, if specified.

Java documentation for android.view.View.getBackgroundTintList().

Property setter documentation:

Applies a tint to the background drawable. Does not modify the current tint mode, which is BlendMode#SRC_IN by default.

Subsequent calls to #setBackground(Drawable) will automatically mutate the drawable and apply the specified tint and tint mode using Drawable#setTintList(ColorStateList).

Java documentation for android.view.View.setBackgroundTintList(android.content.res.ColorStateList).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

See also