ColorDrawable
ColorDrawable is a simple implementation of the Drawable interface in the Android framework. It represents a solid color fill and is provided as android.graphics.drawable.ColorDrawable. The drawable is defined by a single ARGB color value and is commonly used to fill a rectangular region with a uniform color, such as a background, placeholder, or tint.
It is constructed with ColorDrawable(int color), where color is an ARGB color value. The drawable draws its
ColorDrawable is a lightweight, non-animating drawable suitable for simple color blocks. It is often used as
Related drawable types include GradientDrawable and ShapeDrawable, as well as general Drawable classes in the Android