added in version 25.4.0
belongs to Maven artifact com.android.support:support-compat:28.0.0-alpha1

ImageViewCompat

public class ImageViewCompat
extends Object

java.lang.Object
   ↳ android.support.v4.widget.ImageViewCompat


Helper for accessing features in ImageView.

Summary

Public methods

static ColorStateList getImageTintList(ImageView view)

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

static PorterDuff.Mode getImageTintMode(ImageView view)

Return the blending mode used to apply the tint to the image drawable, if specified.

static void setImageTintList(ImageView view, ColorStateList tintList)

Applies a tint to the image drawable.

static void setImageTintMode(ImageView view, PorterDuff.Mode mode)

Specifies the blending mode used to apply the tint specified by setImageTintList(android.widget.ImageView, android.content.res.ColorStateList) to the image drawable.

Inherited methods

From class java.lang.Object

Public methods

getImageTintList

added in version 25.4.0
ColorStateList getImageTintList (ImageView view)

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

Parameters
view ImageView

Returns
ColorStateList

getImageTintMode

added in version 25.4.0
PorterDuff.Mode getImageTintMode (ImageView view)

Return the blending mode used to apply the tint to the image drawable, if specified.

Parameters
view ImageView

Returns
PorterDuff.Mode

setImageTintList

added in version 25.4.0
void setImageTintList (ImageView view, 
                ColorStateList tintList)

Applies a tint to the image drawable.

Parameters
view ImageView

tintList ColorStateList

setImageTintMode

added in version 25.4.0
void setImageTintMode (ImageView view, 
                PorterDuff.Mode mode)

Specifies the blending mode used to apply the tint specified by setImageTintList(android.widget.ImageView, android.content.res.ColorStateList) to the image drawable. The default mode is SRC_IN.

Parameters
view ImageView

mode PorterDuff.Mode