Stay organized with collections Save and categorize content based on your preferences.
added in version 25.1.0
belongs to Maven artifact com.android.support:appcompat-v7:28.0.0-alpha1

AppCompatImageButton

public class AppCompatImageButton
extends ImageButton implements TintableBackgroundView

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


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

This will automatically be used when you use ImageButton 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

Inherited constants

From class android.view.View

Inherited fields

From class android.view.View

Public constructors

AppCompatImageButton(Context context)
AppCompatImageButton(Context context, AttributeSet attrs)
AppCompatImageButton(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)
void setImageURI(Uri uri)

Protected methods

void drawableStateChanged()

Inherited methods

From class android.widget.ImageButton
From class android.widget.ImageView