List of usage examples for android.graphics.drawable Drawable.Callback interface-usage
From source file com.github.shareme.gwsmaterialuikit.library.material.drawable.PaddingDrawable.java
/** * Created by Rey on 8/19/2015. */ public class PaddingDrawable extends Drawable implements Drawable.Callback { private Drawable mDrawable;
From source file de.vanita5.twittnuker.graphic.DrawableWrapper.java
/** * Base wrapper that delegates all calls to another {@link Drawable}. The wrapped {@link Drawable} * <em>must</em> be fully released from any {@link View} before wrapping, otherwise internal {@link * Drawable.Callback} may be dropped. */ class DrawableWrapper extends Drawable implements Drawable.Callback {
From source file android.support.v17.leanback.graphics.CompositeDrawable.java
/** * Generic drawable class that can be composed of multiple children. Whenever the bounds changes * for this class, it updates those of its children. */ public class CompositeDrawable extends Drawable implements Drawable.Callback {
From source file com.albedinsky.android.support.ui.graphics.drawable.DrawableWrapper.java
/** * A {@link Drawable} implementation which can be used to wrap another instance of Drawable. * * @author Martin Albedinsky */ public class DrawableWrapper extends Drawable implements Drawable.Callback {
From source file com.albedinsky.android.ui.graphics.drawable.DrawableWrapper.java
/** * A {@link android.graphics.drawable.Drawable} implementation which can be used to wrap another instance of Drawable. * * @author Martin Albedinsky */ public class DrawableWrapper extends Drawable implements Drawable.Callback {
From source file com.doyoteam.drawables.LayerDrawable.java
/**
* A Drawable that manages an array of other Drawables. These are drawn in array
* order, so the element with the largest index will be drawn on top.
* <p/>
* It can be defined in an XML file with the <code><layer-list></code> element.
* Each Drawable in the layer is defined in a nested <code><item></code>.
From source file com.guard.animationlib.ripple.LayerDrawable.java
/**
* A Drawable that manages an array of other Drawables. These are drawn in array
* order, so the element with the largest index will be drawn on top.
* <p/>
* It can be defined in an XML file with the <code><layer-list></code> element.
* Each Drawable in the layer is defined in a nested <code><item></code>.
From source file codetail.graphics.drawables.LayerDrawable.java
/**
* A Drawable that manages an array of other Drawables. These are drawn in array
* order, so the element with the largest index will be drawn on top.
* <p/>
* It can be defined in an XML file with the <code><layer-list></code> element.
* Each Drawable in the layer is defined in a nested <code><item></code>.
From source file vapor.view.VaporView.java
/**
* Fluent Vapor companion to View, a class that represents the basic building
* block for user interface components. A View occupies a rectangular area on
* the screen and is responsible for drawing and event handling.
*
* @author Darius H (darius@vapor-api.com)