Searched defs:Drawable (Results 1 - 2 of 2) sorted by relevance

/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java55 * This allows for drawing through {@link #draw(Drawable, Paint_Delegate, boolean, boolean)} and
56 * {@link #draw(Drawable)}
86 public interface Drawable { interface in class:GcSnapshot
561 * Executes the Drawable's draw method, with a null paint delegate.
565 public void draw(Drawable drawable) {
570 * Executes the Drawable's draw method.
577 public void draw(Drawable drawable, Paint_Delegate paint, boolean compositeOnly,
605 private void drawInLayer(Layer layer, Drawable drawable, Paint_Delegate paint,
680 private void drawOnGraphics(Graphics2D g, Drawable drawable, Paint_Delegate paint,
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java64 * A Drawable is a general abstraction for "something that can be drawn." Most
65 * often you will deal with Drawable as the type of resource retrieved for
66 * drawing things to the screen; the Drawable class provides a generic API for
68 * Unlike a {@link android.view.View}, a Drawable does not have any facility to
71 * <p>In addition to simple drawing, Drawable provides a number of generic
76 * Drawable where it is drawn and how large it should be. All Drawables
83 * For example, a Drawable that is intended to be the frame for a button
87 * <li> The {@link #setState} method allows the client to tell the Drawable
92 * continuous controller that can modify the Drawable is displayed, such as
96 * <li> A Drawable ca
177 public abstract class Drawable { class
[all...]

Completed in 1320 milliseconds