About 14,200 results
Open links in new tab
  1. Drawable | API reference | 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 …

  2. Android Drawables - Tutorial - vogella

    Feb 26, 2026 · 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 …

  3. 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 …

  4. 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 …

  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_guides Wiki · GitHub

    Drawables can be an initially overwhelming topic because there are many drawable types used in different situations such as drawing shapes, setting state behaviors for buttons, creating stretchable …

  7. Drawables | Android Development | CodePath Guides

    Each drawable in the list is drawn in the order of the list—the last drawable in the list is drawn on top. Each drawable is represented by an <item> element inside a single <layer-list> element.

  8. Android Drawables and Images - Pluralsight

    Apr 10, 2026 · A drawable resource is a general concept for a graphic (such as an image) that can be drawn on the screen. In this course, Android Drawables and Images, you'll learn foundational …

  9. Why is Drawable Used in Android: Exploring Its Importance and ...

    Jun 6, 2024 · Drawable is a fundamental concept in Android development that is used to define static and animated visual resources for applications. It is essentially an object that can be drawn on the …

  10. 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 …