added in version 25.1.0
belongs to Maven artifact com.android.support:appcompat-v7:28.0.0-alpha1

AppCompatImageView

public class AppCompatImageView
extends ImageView implements TintableBackgroundView

java.lang.Object
   ↳ android.view.View
     ↳ android.widget.ImageView
       ↳ android.support.v7.widget.AppCompatImageView


A ImageView which supports compatible features on older versions of the platform, including:

This will automatically be used when you use ImageView in your layouts and the top-level activity / dialog is provided by appcompat. You should only need to manually use this class when writing custom views.

Summary

XML attributes

AppCompatImageView_srcCompat  

Inherited constants

From class android.view.View

Inherited fields

From class android.view.View

Public constructors

AppCompatImageView(Context context)
AppCompatImageView(Context context, AttributeSet attrs)
AppCompatImageView(Context context, AttributeSet attrs, int defStyleAttr)

Public methods

boolean hasOverlappingRendering()
void setBackgroundDrawable(Drawable background)
void setBackgroundResource(int resId)
void setImageBitmap(Bitmap bm)
void setImageDrawable(Drawable drawable)
void setImageResource(int resId)

Sets a drawable as the content of this ImageView.

void setImageURI(Uri uri)

Protected methods

void drawableStateChanged()

Inherited methods

From class android.widget.ImageView
From class android.view.View
From class java.lang.Object
From interface android.graphics.drawable.Drawable.Callback
From interface android.view.KeyEvent.Callback
From interface android.view.accessibility.AccessibilityEventSource
From interface android.support.v4.view.TintableBackgroundView

XML attributes

AppCompatImageView_srcCompat

Related methods:

Public constructors

AppCompatImageView

added in version 25.1.0
AppCompatImageView (Context context)

Parameters
context Context

AppCompatImageView

added in version 25.1.0
AppCompatImageView (Context context, 
                AttributeSet attrs)

Parameters
context Context

attrs AttributeSet

AppCompatImageView

added in version 25.1.0
AppCompatImageView (Context context, 
                AttributeSet attrs, 
                int defStyleAttr)

Parameters
context Context

attrs AttributeSet

defStyleAttr int

Public methods

hasOverlappingRendering

boolean hasOverlappingRendering ()

Returns
boolean

setBackgroundDrawable

added in version 26.1.0
void setBackgroundDrawable (Drawable background)

Parameters
background Drawable

setBackgroundResource

void setBackgroundResource (int resId)

Parameters
resId int

setImageBitmap

void setImageBitmap (Bitmap bm)

Parameters
bm Bitmap

setImageDrawable

void setImageDrawable (Drawable drawable)

Parameters
drawable Drawable

setImageResource

void setImageResource (int resId)

Sets a drawable as the content of this ImageView.

Allows the use of vector drawables when running on older versions of the platform.

Related XML Attributes:

Parameters
resId int: the resource identifier of the drawable

setImageURI

void setImageURI (Uri uri)

Parameters
uri Uri

Protected methods

drawableStateChanged

void drawableStateChanged ()