About 86,800 results
Open links in new tab
  1. Drawable resources | App architecture | Android Developers

    Feb 10, 2025 · A drawable defined in XML that clips another drawable based on this drawable's current level. You can control how much the child drawable gets clipped in width and height based on the …

  2. Drawable - Android SDK | Android Developers

    A Drawable is a general abstraction for "something that can be drawn." Most often you will deal with Drawable as the type of resource retrieved for drawing things to the screen; the Drawable class …

  3. Android Drawables - Tutorial - vogella

    Nov 11, 2025 · 1. What are Drawables? A Drawable resource is a general concept for a graphic that can be drawn. The simplest case is a graphical file (bitmap), which would be represented in Android via a …

  4. 5.1: Drawables, styles, and themes · GitBook - GitHub Pages

    A Drawable is a graphic that can be drawn to the screen. You retrieve a Drawable using APIs such as getDrawable(int), and you apply a Drawable to an XML resource using attributes such as …

  5. Drawable Resources | Android Developers

    A drawable defined in XML that insets another drawable by a specified distance. This is useful when a View needs a background that is smaller than the View's actual bounds.

  6. Drawables | CodePath Android Cliffnotes

    Let's explore these drawable file types one by one and take a look at examples of usage.

  7. How to Create Drawable Resource XML File in Android Studio?

    Jul 23, 2025 · A drawable resource is a common concept for a graphic that can be drawn to the screen and which one can retrieve with APIs such as getDrawable (int) or apply to another XML resource …

  8. Drawables in Android | Android Programming by Wideskills

    Android Drawable Class extends to define a variety of specific kinds of drawable graphics which includes BitmapDrawable, ShapeDrawable, PictureDrawable, etc. These classes can be extended to …

  9. Drawables overview | Views | Android Developers

    Jun 27, 2024 · Learn how to display graphics in Compose. When you need to display static images in your app, you can use the Drawable class and its subclasses to draw shapes and images. A …

  10. Drawable | AppMaster

    Sep 28, 2023 · In the context of Android app development, Drawable is a crucial component that pertains to the representation of visual elements such as images, shapes, gradients, and more.