belongs to Maven artifact com.android.support:wear:28.0.0-alpha1
RoundedDrawable
public
class
RoundedDrawable
extends Drawable
java.lang.Object | ||
↳ | android.graphics.drawable.Drawable | |
↳ | android.support.wear.widget.RoundedDrawable |
Maintains and draws a drawable inside rounded rectangular bounds.
The drawable set by the setDrawable(Drawable)
method will be drawn within the rounded
bounds specified by setBounds(Rect)
and setRadius(int)
when the
draw(Canvas)
method is called.
By default, RoundedDrawable will apply padding to the drawable inside to fit the drawable into
the rounded rectangle. If clipping is enabled by the setClipEnabled(boolean)
method, it
will clip the drawable to a rounded rectangle instead of resizing it.
The setRadius(int)
method is used to specify the amount of border radius applied to
the corners of inner drawable, regardless of whether or not the clipping is enabled, border
radius will be applied to prevent overflowing of the drawable from specified rounded rectangular
area.
RoundedDrawable can be inflated from XML (supported above API level 24) or constructed
programmatically. To inflate from XML, use getDrawable(int)
method.
Syntax:
<?xml version="1.0" encoding="utf-8"?> <android.support.wear.widget.RoundedDrawable xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:src="drawable" app:backgroundColor="color" app:radius="dimension" app:clipEnabled="boolean" />
Summary
XML attributes | |
---|---|
RoundedDrawable_android_src |
|
RoundedDrawable_backgroundColor |
|
RoundedDrawable_clipEnabled |
|
RoundedDrawable_radius |
Public constructors | |
---|---|
RoundedDrawable()
|
Public methods | |
---|---|
void
|
draw(Canvas canvas)
|
int
|
getAlpha()
|
int
|
getBackgroundColor()
Returns the background color. |
Drawable
|
getDrawable()
Returns the drawable that will be rendered. |
int
|
getOpacity()
|
int
|
getRadius()
Returns the border radius applied when rendering the drawable in pixels. |
void
|
inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Resources.Theme theme)
|
boolean
|
isClipEnabled()
Returns whether the drawable inside is clipped or resized to fit the rounded bounds. |
void
|
setAlpha(int alpha)
|
void
|
setBackgroundColor(int color)
Sets the background color of the rounded drawable. |
void
|
setClipEnabled(boolean clipEnabled)
Sets whether the drawable inside should be clipped or resized to fit the rounded bounds. |
void
|
setColorFilter(ColorFilter cf)
|
void
|
setDrawable(Drawable drawable)
Sets the drawable to be rendered. |
void
|
setRadius(int radius)
Sets the border radius to be applied when rendering the drawable in pixels. |
Protected methods | |
---|---|
void
|
onBoundsChange(Rect bounds)
|
Inherited methods | |
---|---|
From
class
android.graphics.drawable.Drawable
| |
From
class
java.lang.Object
|
XML attributes
RoundedDrawable_android_src
Related methods:
RoundedDrawable_backgroundColor
Related methods:
RoundedDrawable_clipEnabled
Related methods:
RoundedDrawable_radius
Related methods:
Public constructors
Public methods
getAlpha
int getAlpha ()
Returns | |
---|---|
int |
getBackgroundColor
int getBackgroundColor ()
Returns the background color.
Returns | |
---|---|
int |
an ARGB color |
getDrawable
Drawable getDrawable ()
Returns the drawable that will be rendered.
Returns | |
---|---|
Drawable |
Drawable that will be rendered.
|
getRadius
int getRadius ()
Returns the border radius applied when rendering the drawable in pixels.
Returns | |
---|---|
int |
radius in pixels |
inflate
void inflate (Resources r, XmlPullParser parser, AttributeSet attrs, Resources.Theme theme)
Parameters | |
---|---|
r |
Resources |
parser |
XmlPullParser |
attrs |
AttributeSet |
theme |
Resources.Theme |
Throws | |
---|---|
XmlPullParserException |
|
IOException |
isClipEnabled
boolean isClipEnabled ()
Returns whether the drawable inside is clipped or resized to fit the rounded bounds.
Returns | |
---|---|
boolean |
true if the drawable is clipped, false if it's resized.
|
setBackgroundColor
void setBackgroundColor (int color)
Sets the background color of the rounded drawable.
Related XML Attributes:
Parameters | |
---|---|
color |
int : an ARGB color |
setClipEnabled
void setClipEnabled (boolean clipEnabled)
Sets whether the drawable inside should be clipped or resized to fit the rounded bounds. If
the drawable is animated, don't set clipping to true
as clipping on animated
drawables is not supported.
Related XML Attributes:
Parameters | |
---|---|
clipEnabled |
boolean : true if the drawable should be clipped, false if it
should be resized. |
setColorFilter
void setColorFilter (ColorFilter cf)
Parameters | |
---|---|
cf |
ColorFilter |
setDrawable
void setDrawable (Drawable drawable)
Sets the drawable to be rendered.
Related XML Attributes:
Parameters | |
---|---|
drawable |
Drawable : Drawable to be rendered |
setRadius
void setRadius (int radius)
Sets the border radius to be applied when rendering the drawable in pixels.
Related XML Attributes:
Parameters | |
---|---|
radius |
int : radius in pixels |
Protected methods
Interfaces
Classes
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-11 UTC.