public abstract class Drawable
extends Object
java.lang.Object | |
↳ | android.graphics.drawable.Drawable |
Known Direct Subclasses |
Known Indirect Subclasses |
Drawable是“可以绘制的东西”的一般抽象。 大多数情况下,您将使用Drawable作为绘制事物到屏幕上检索的资源的类型; Drawable类提供了一个通用API来处理可能采用各种形式的底层视觉资源。 与View
不同,Drawable没有任何接收事件或以其他方式与用户交互的功能。
除了简单的绘制外,Drawable还为客户提供了许多通用机制来与正在绘制的内容进行交互:
setBounds(Rect)
method must be called to tell the Drawable where it is drawn and how large it should be. All Drawables should respect the requested size, often simply by scaling their imagery. A client can find the preferred size for some Drawables with the getIntrinsicHeight()
and getIntrinsicWidth()
methods. getPadding(Rect)
method can return from some Drawables information about how to frame content that is placed inside of them. For example, a Drawable that is intended to be the frame for a button widget would need to return padding that correctly places the label inside of itself. setState(int[])
method allows the client to tell the Drawable in which state it is to be drawn, such as "focused", "selected", etc. Some drawables may modify their imagery based on the selected state. setLevel(int)
method allows the client to supply a single continuous controller that can modify the Drawable is displayed, such as a battery level or progress level. Some drawables may modify their imagery based on the current level. Drawable.Callback
interface. All clients should support this interface (via setCallback(Drawable.Callback)
) so that animations will work. A simple way to do this is through the system facilities such as setBackground(Drawable)
and ImageView
. Android的所有版本都允许Drawable类在运行时进行扩展和使用,以取代框架提供的可绘制类。 从API 24
开始,自定义绘图类也可以用于XML。
注意:自定义可绘制类只能在您的应用程序包内访问。 其他应用程序将无法加载它们。
至少,自定义可绘制类必须在Drawable上实现抽象方法,并且应该重写 draw(Canvas)
方法来绘制内容。
自定义drawables类可以以多种方式在XML中使用:
<com.myapp.MyCustomDrawable xmlns:android="http://schemas.android.com/apk/res/android" android:color="#ffff0000" />
<drawable xmlns:android="http://schemas.android.com/apk/res/android" class="com.myapp.MyTopLevelClass$InnerCustomDrawable" android:color="#ffff0000" />
有关如何使用drawable的更多信息,请阅读Canvas and Drawables开发人员指南。 有关创建可绘制资源(可以在代码中加载的XML或位图文件)的信息和示例,请阅读Drawable Resources文档。
Nested classes |
|
---|---|
interface |
Drawable.Callback 如果您想要创建一个延伸到 |
class |
Drawable.ConstantState 这个抽象类被 |
Public constructors |
|
---|---|
Drawable() |
Public methods |
|
---|---|
void |
applyTheme(Resources.Theme t) 将指定的主题应用于此Drawable及其子项。 |
boolean |
canApplyTheme() |
void |
clearColorFilter() 移除该drawable的颜色过滤器。 |
final Rect |
copyBounds() 在新的Rect中返回可绘制边界的副本。 |
final void |
copyBounds(Rect bounds) 在指定的Rect中返回可绘制边界的副本(由调用方分配)。 |
static Drawable |
createFromPath(String pathName) 从文件路径名创建一个drawable。 |
static Drawable |
createFromResourceStream(Resources res, TypedValue value, InputStream is, String srcName, BitmapFactory.Options opts) 从输入流创建drawable,使用给定的资源和值来确定密度信息。 |
static Drawable |
createFromResourceStream(Resources res, TypedValue value, InputStream is, String srcName) 从输入流创建drawable,使用给定的资源和值来确定密度信息。 |
static Drawable |
createFromStream(InputStream is, String srcName) 从输入流创建一个drawable |
static Drawable |
createFromXml(Resources r, XmlPullParser parser) 从XML文档创建一个drawable。 |
static Drawable |
createFromXml(Resources r, XmlPullParser parser, Resources.Theme theme) 使用可选的 |
static Drawable |
createFromXmlInner(Resources r, XmlPullParser parser, AttributeSet attrs, Resources.Theme theme) 使用可选的 |
static Drawable |
createFromXmlInner(Resources r, XmlPullParser parser, AttributeSet attrs) 从XML文档内部创建。 |
abstract void |
draw(Canvas canvas) 在其边界(通过setBounds设置)中绘制,考虑可选效果,如alpha(通过setAlpha设置)和color filter(通过setColorFilter设置)。 |
int |
getAlpha() 获取drawable的当前alpha值。 |
final Rect |
getBounds() 返回drawable的边界Rect。 |
Drawable.Callback |
getCallback() 返回附加到此Drawable的当前 |
int |
getChangingConfigurations() 返回此drawable可能更改的配置参数的掩码,要求重新创建它。 |
ColorFilter |
getColorFilter() 返回当前的颜色过滤器,如果没有设置,则返回 |
Drawable.ConstantState |
getConstantState() 返回保存此Drawable的共享状态的 |
Drawable |
getCurrent() |
Rect |
getDirtyBounds() 返回drawable的脏边界Rect。 |
void |
getHotspotBounds(Rect outRect) 用热点边界填充 |
int |
getIntrinsicHeight() 返回drawable的内在高度。 |
int |
getIntrinsicWidth() 返回drawable的内部宽度。 |
int |
getLayoutDirection() 返回此Drawable的已解析布局方向。 |
final int |
getLevel() 检索当前级别。 |
int |
getMinimumHeight() 返回此Drawable建议的最小高度。 |
int |
getMinimumWidth() 返回此Drawable建议的最小宽度。 |
abstract int |
getOpacity() 返回此Drawable的不透明度/透明度。 |
void |
getOutline(Outline outline) 调用drawable来填充定义其绘图区域的Outline。 |
boolean |
getPadding(Rect padding) 返回填充此Drawable建议的插入内容以将内容放入drawable的边界内。 |
int[] |
getState() 描述了当前状态,如primitve状态的联合,如 |
Region |
getTransparentRegion() 返回表示完全透明的Drawable部分的区域。 |
void |
inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Resources.Theme theme) 从可选的由主题设计的XML资源中扩展此Drawable。 |
void |
inflate(Resources r, XmlPullParser parser, AttributeSet attrs) 从XML资源膨胀此Drawable。 |
void |
invalidateSelf() 使用当前的 |
boolean |
isAutoMirrored() 当它的布局方向是从右到左的RTL时,告诉它是否自动镜像。 |
boolean |
isFilterBitmap() |
boolean |
isStateful() 指示此drawable是否会根据状态更改其外观。 |
final boolean |
isVisible() |
void |
jumpToCurrentState() 如果此Drawable确实在状态之间转换动画,请求它立即跳转到当前状态并跳过任何活动动画。 |
Drawable |
mutate() 使这个drawable可变。 |
boolean |
onLayoutDirectionChanged(int layoutDirection) 当drawable的解析布局方向改变时调用。 |
static int |
resolveOpacity(int op1, int op2) 为两个源不透明度返回适当的不透明度值。 |
void |
scheduleSelf(Runnable what, long when) 使用当前的 |
abstract void |
setAlpha(int alpha) 为drawable指定一个alpha值。 |
void |
setAutoMirrored(boolean mirrored) 设置当其布局方向为RTL(从右到左)时,此Drawable是否自动镜像。 |
void |
setBounds(int left, int top, int right, int bottom) 为Drawable指定一个边界矩形。 |
void |
setBounds(Rect bounds) 为Drawable指定一个边界矩形。 |
final void |
setCallback(Drawable.Callback cb) 将 |
void |
setChangingConfigurations(int configs) 设置该drawable可能更改的配置参数的掩码,要求重新创建它。 |
void |
setColorFilter(int color, PorterDuff.Mode mode) 指定一个颜色和Porter-Duff模式作为该drawable的颜色过滤器。 |
abstract void |
setColorFilter(ColorFilter colorFilter) 为绘图指定一个可选的颜色过滤器。 |
void |
setDither(boolean dither) 此方法在API级别23中已弃用。此属性将被忽略。 |
void |
setFilterBitmap(boolean filter) 设置为true时,在缩放或旋转时使可绘制滤镜具有双线性采样的位图。 |
void |
setHotspot(float x, float y) 指定可绘制内的热点位置。 |
void |
setHotspotBounds(int left, int top, int right, int bottom) 设置热点受限的边界,如果它们应该与可绘制边界不同。 |
final boolean |
setLayoutDirection(int layoutDirection) 设置该drawable的布局方向。 |
final boolean |
setLevel(int level) 指定drawable的级别。 |
boolean |
setState(int[] stateSet) 为drawable指定一组状态。 |
void |
setTint(int tintColor) 指定该drawable的色调颜色。 |
void |
setTintList(ColorStateList tint) 指定该drawable的色彩颜色作为颜色状态列表。 |
void |
setTintMode(PorterDuff.Mode tintMode) 指定该drawable的色调混合模式。 |
boolean |
setVisible(boolean visible, boolean restart) 设置此Drawable是否可见。 |
void |
unscheduleSelf(Runnable what) 使用当前的 |
Protected methods |
|
---|---|
void |
onBoundsChange(Rect bounds) 如果您根据边界而变化,请在您的子类中覆盖此内容以更改外观。 |
boolean |
onLevelChange(int level) 如果您根据级别而变化,请在您的子类中覆盖此内容以更改外观。 |
boolean |
onStateChange(int[] state) 如果您认识到指定的状态,请在您的子类中覆盖此内容以更改外观。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
void applyTheme (Resources.Theme t)
将指定的主题应用于此Drawable及其子项。
Parameters | |
---|---|
t |
Resources.Theme : the theme to apply |
Rect copyBounds ()
在新的Rect中返回可绘制边界的副本。 这将返回与getBounds()相同的值,但返回的对象保证不会被drawable稍后更改(即,它不保留对此rect的引用)。 如果调用者已经分配了Rect,则调用copyBounds(rect)。
Returns | |
---|---|
Rect |
A copy of the drawable's bounds |
void copyBounds (Rect bounds)
在指定的Rect中返回可绘制边界的副本(由调用方分配)。 当它的draw()方法被调用时,边界指定了它将在哪里绘制。
Parameters | |
---|---|
bounds |
Rect : Rect to receive the drawable's bounds (allocated by the caller). |
Drawable createFromPath (String pathName)
从文件路径名创建一个drawable。
Parameters | |
---|---|
pathName |
String
|
Returns | |
---|---|
Drawable |
Drawable createFromResourceStream (Resources res, TypedValue value, InputStream is, String srcName, BitmapFactory.Options opts)
从输入流创建drawable,使用给定的资源和值来确定密度信息。
Parameters | |
---|---|
res |
Resources
|
value |
TypedValue
|
is |
InputStream
|
srcName |
String
|
opts |
BitmapFactory.Options
|
Returns | |
---|---|
Drawable |
Drawable createFromResourceStream (Resources res, TypedValue value, InputStream is, String srcName)
从输入流创建drawable,使用给定的资源和值来确定密度信息。
Parameters | |
---|---|
res |
Resources
|
value |
TypedValue
|
is |
InputStream
|
srcName |
String
|
Returns | |
---|---|
Drawable |
Drawable createFromStream (InputStream is, String srcName)
从输入流创建一个drawable
Parameters | |
---|---|
is |
InputStream
|
srcName |
String
|
Returns | |
---|---|
Drawable |
Drawable createFromXml (Resources r, XmlPullParser parser)
从XML文档创建一个drawable。 有关如何使用XML创建资源的更多信息,请参见Drawable Resources 。
Parameters | |
---|---|
r |
Resources
|
parser |
XmlPullParser
|
Returns | |
---|---|
Drawable |
Throws | |
---|---|
XmlPullParserException |
|
IOException |
Drawable createFromXml (Resources r, XmlPullParser parser, Resources.Theme theme)
使用可选的Resources.Theme
从XML文档创建drawable。 有关如何使用XML创建资源的更多信息,请参见Drawable Resources 。
Parameters | |
---|---|
r |
Resources
|
parser |
XmlPullParser
|
theme |
Resources.Theme
|
Returns | |
---|---|
Drawable |
Throws | |
---|---|
XmlPullParserException |
|
IOException |
Drawable createFromXmlInner (Resources r, XmlPullParser parser, AttributeSet attrs, Resources.Theme theme)
使用可选的Resources.Theme
从XML文档中创建drawable。 调用位于XML文档标签中的解析器,尝试从该标签创建Drawable。 如果标签不是有效的drawable,则返回null
。
Parameters | |
---|---|
r |
Resources
|
parser |
XmlPullParser
|
attrs |
AttributeSet
|
theme |
Resources.Theme
|
Returns | |
---|---|
Drawable |
Throws | |
---|---|
XmlPullParserException |
|
IOException |
Drawable createFromXmlInner (Resources r, XmlPullParser parser, AttributeSet attrs)
从XML文档内部创建。 调用位于XML文档标签中的解析器,尝试从该标签创建Drawable。 如果标记不是有效的drawable,则返回null。
Parameters | |
---|---|
r |
Resources
|
parser |
XmlPullParser
|
attrs |
AttributeSet
|
Returns | |
---|---|
Drawable |
Throws | |
---|---|
XmlPullParserException |
|
IOException |
void draw (Canvas canvas)
在其边界(通过setBounds设置)中绘制,考虑可选效果,如alpha(通过setAlpha设置)和color filter(通过setColorFilter设置)。
Parameters | |
---|---|
canvas |
Canvas : The canvas to draw into |
int getAlpha ()
获取drawable的当前alpha值。 0表示完全透明,255表示完全不透明。 该方法由Drawable子类实现,返回的值特定于该类如何处理alpha。 如果该类未覆盖此方法以返回特定于其使用alpha的值,则默认返回值为255。
Returns | |
---|---|
int |
Rect getBounds ()
返回drawable的边界Rect。 注意:为了提高效率,返回的对象可能是存储在drawable中的相同对象(尽管这不能保证),所以如果需要持续的边界副本,请调用copyBounds(rect)。 你也不应该改变这个方法返回的对象,因为它可能是存储在drawable中的同一个对象。
Returns | |
---|---|
Rect |
The bounds of the drawable (which may change later, so caller beware). DO NOT ALTER the returned object as it may change the stored bounds of this drawable. |
Drawable.Callback getCallback ()
返回附加到此Drawable的当前 Drawable.Callback
实现。
Returns | |
---|---|
Drawable.Callback |
A Drawable.Callback instance or null if no callback was set. |
int getChangingConfigurations ()
返回此drawable可能更改的配置参数的掩码,要求重新创建它。 缺省实现返回默认情况下通过setChangingConfigurations(int)
或0提供的任何内容。 子类可以将其扩展到它们所拥有的任何其他drawable的变化配置中或其中。
Returns | |
---|---|
int |
Returns a mask of the changing configuration parameters, as defined by ActivityInfo . |
也可以看看:
ColorFilter getColorFilter ()
返回当前的颜色过滤器,如果没有设置则返回 null
。
Returns | |
---|---|
ColorFilter |
the current color filter, or null if none set |
Drawable.ConstantState getConstantState ()
返回保存此Drawable的共享状态的 Drawable.ConstantState
实例。
Returns | |
---|---|
Drawable.ConstantState |
The ConstantState associated to that Drawable. |
也可以看看:
Drawable getCurrent ()
Returns | |
---|---|
Drawable |
The current drawable that will be used by this drawable. For simple drawables, this is just the drawable itself. For drawables that change state like StateListDrawable and LevelListDrawable this will be the child drawable currently in use. |
Rect getDirtyBounds ()
返回drawable的脏边界Rect。 注意:为了提高效率,返回的对象可能是存储在drawable中的相同对象(尽管这不能保证)。
默认情况下,这将返回完整的可绘制边界。 自定义绘图可能会重写此方法以执行更精确的失效。
Returns | |
---|---|
Rect |
The dirty bounds of this drawable |
void getHotspotBounds (Rect outRect)
用热点边界填充 outRect
。
Parameters | |
---|---|
outRect |
Rect : the rect to populate with the hotspot bounds |
int getIntrinsicHeight ()
返回drawable的内在高度。
固有高度是可拉伸的布局高度,包括任何固有的填充。 如果drawable没有固有的高度,例如纯色,则此方法返回-1。
Returns | |
---|---|
int |
the intrinsic height, or -1 if no intrinsic height |
int getIntrinsicWidth ()
返回drawable的内部宽度。
固有宽度是可展开的布局的宽度,包括任何固有的填充。 如果drawable没有固有的宽度,例如纯色,则此方法返回-1。
Returns | |
---|---|
int |
the intrinsic width, or -1 if no intrinsic width |
int getLayoutDirection ()
返回此Drawable的已解析布局方向。
Returns | |
---|---|
int |
One of LAYOUT_DIRECTION_LTR , LAYOUT_DIRECTION_RTL |
也可以看看:
int getLevel ()
检索当前级别。
Returns | |
---|---|
int |
int Current level, from 0 (minimum) to 10000 (maximum). |
int getMinimumHeight ()
返回此Drawable建议的最小高度。 如果一个View使用这个Drawable作为背景,那么建议View使用至少这个值来表示它的高度。 (在某些情况下这是不可能的。)这个值应该包含任何填充。
Returns | |
---|---|
int |
The minimum height suggested by this Drawable. If this Drawable doesn't have a suggested minimum height, 0 is returned. |
int getMinimumWidth ()
返回此Drawable建议的最小宽度。 如果一个View使用这个Drawable作为背景,那么建议View至少使用这个值来表示它的宽度。 (在某些情况下这是不可能的。)这个值应该包含任何填充。
Returns | |
---|---|
int |
The minimum width suggested by this Drawable. If this Drawable doesn't have a suggested minimum width, 0 is returned. |
int getOpacity ()
返回此Drawable的不透明度/透明度。 返回的值是在抽象格式常数之一PixelFormat
: UNKNOWN
, TRANSLUCENT
, TRANSPARENT
,或OPAQUE
。
OPAQUE drawable是一个绘制所有内容的范围,完全覆盖drawable后面的所有内容。 一个TRANSPARENT drawable是一个在其范围内没有绘制任何东西的图形,允许它后面的所有东西都显示出来。 TRANSLUCENT drawable是任何其他状态中的drawable,drawable将绘制其边界内的一些内容,但不是全部内容,并且至少drawable后面的某些内容将可见。 如果无法确定可绘制内容的可见性,则最安全/最佳返回值为TRANSLUCENT。
一般而言,Drawable应该尽可能保守并且返回值。 例如,如果它包含多个子drawable,并且一次只显示其中一个,如果只有一个子项是TRANSLUCENT,而其他子项是OPAQUE,则应返回TRANSLUCENT。 您可以使用方法resolveOpacity(int, int)
将两个不透明度标准减少到相应的单个输出。
请注意,返回的值不一定会考虑客户端通过setAlpha(int)
或setColorFilter(ColorFilter)
方法应用的自定义alpha或颜色过滤器。 一些子类,比如BitmapDrawable
, ColorDrawable
,并GradientDrawable
,对价值做账setAlpha(int)
,但总的行为是依赖于子类实现的。
Returns | |
---|---|
int |
int The opacity class of the Drawable. |
也可以看看:
void getOutline (Outline outline)
调用drawable来填充定义其绘图区域的Outline。
此方法由默认的 ViewOutlineProvider
以定义视图的轮廓。
默认行为将轮廓定义为0 alpha的边界矩形。 希望传达不同形状或阿尔法值的子类必须重写此方法。
Parameters | |
---|---|
outline |
Outline
|
boolean getPadding (Rect padding)
返回填充此Drawable建议的插入内容以将内容放入drawable的边界内。 正值移向Drawable的中心(设置Rect.inset)。
Parameters | |
---|---|
padding |
Rect
|
Returns | |
---|---|
boolean |
true if this drawable actually has a padding, else false. When false is returned, the padding is always set to 0. |
int[] getState ()
描述了当前的状态,如primitve国家的联盟,比如 state_focused
, state_selected
等,有些可绘可以根据所选择的状态修改他们的影像。
Returns | |
---|---|
int[] |
An array of resource Ids describing the current state. |
Region getTransparentRegion ()
返回表示完全透明的Drawable部分的区域。 这可用于执行绘图操作,确定绘制Drawable时目标的哪些部分不会更改。 默认实现返回null,表示没有透明区域; 如果子类想要提供这个优化信息,子类可以选择性地覆盖它以返回一个实际的区域,但并不要求它们这样做。
Returns | |
---|---|
Region |
Returns null if the Drawables has no transparent region to report, else a Region holding the parts of the Drawable's bounds that are transparent. |
void inflate (Resources r, XmlPullParser parser, AttributeSet attrs, Resources.Theme theme)
从可选的由主题设计的XML资源中扩展此Drawable。 对于每个Drawable,这不能被调用一次以上。 请注意,框架可能已经调用过这一次从XML资源创建Drawable实例。
Parameters | |
---|---|
r |
Resources : Resources used to resolve attribute values |
parser |
XmlPullParser : XML parser from which to inflate this Drawable |
attrs |
AttributeSet : Base set of attribute values |
theme |
Resources.Theme : Theme to apply, may be null |
Throws | |
---|---|
|
XmlPullParserException |
IOException |
|
XmlPullParserException |
void inflate (Resources r, XmlPullParser parser, AttributeSet attrs)
从XML资源膨胀此Drawable。 不适用主题。
Parameters | |
---|---|
r |
Resources
|
parser |
XmlPullParser
|
attrs |
AttributeSet
|
Throws | |
---|---|
XmlPullParserException |
|
IOException |
void invalidateSelf ()
使用当前的Drawable.Callback
实现将此Drawable重绘。 如果Drawable没有附加回调,则不执行任何操作。
boolean isAutoMirrored ()
当它的布局方向是从右到左的RTL时,告诉它是否自动镜像。 见LayoutDirection
。
Returns | |
---|---|
boolean |
boolean Returns true if this Drawable will be automatically mirrored. |
boolean isFilterBitmap ()
Returns | |
---|---|
boolean |
whether this drawable filters its bitmaps |
也可以看看:
boolean isStateful ()
指示此drawable是否会根据状态更改其外观。 客户可以使用它来确定是否有必要计算它们的状态并调用setState。
Returns | |
---|---|
boolean |
True if this drawable changes its appearance based on state, false otherwise. |
也可以看看:
void jumpToCurrentState ()
如果此Drawable确实在状态之间转换动画,请求它立即跳转到当前状态并跳过任何活动动画。
Drawable mutate ()
使这个drawable可变。 这个操作不能逆转。 一个可变的drawable保证不与其他drawable共享它的状态。 当你需要修改从资源加载的drawable的属性时,这是特别有用的。 默认情况下,从同一资源加载的所有可绘制实例共享一个公共状态; 如果修改一个实例的状态,则所有其他实例都将收到相同的修改。 在可变Drawable上调用此方法将不起作用。
Returns | |
---|---|
Drawable |
This drawable. |
boolean onLayoutDirectionChanged (int layoutDirection)
当drawable的解析布局方向改变时调用。
Parameters | |
---|---|
layoutDirection |
int : the new resolved layout direction |
Returns | |
---|---|
boolean |
true if the layout direction change has caused the appearance of the drawable to change such that it needs to be re-drawn, false otherwise |
也可以看看:
int resolveOpacity (int op1, int op2)
为两个源不透明度返回适当的不透明度值。 如果其中任一个是未知的,则返回; 否则,如果两者都是TRANSLUCENT,则返回; 否则,如果是透明的,则返回; 否则,返回OPAQUE。
这是为了帮助实施 getOpacity()
。
Parameters | |
---|---|
op1 |
int : One opacity value. |
op2 |
int : Another opacity value. |
Returns | |
---|---|
int |
int The combined opacity value. |
也可以看看:
void scheduleSelf (Runnable what, long when)
使用当前的Drawable.Callback
实现来绘制此Drawable。 如果Drawable没有附加回调,则不执行任何操作。
Parameters | |
---|---|
what |
Runnable : The action being scheduled. |
when |
long : The time (in milliseconds) to run. |
void setAlpha (int alpha)
为drawable指定一个alpha值。 0表示完全透明,255表示完全不透明。
Parameters | |
---|---|
alpha |
int
|
void setAutoMirrored (boolean mirrored)
设置当其布局方向为RTL(从右到左)时,此Drawable是否自动镜像。 见LayoutDirection
。
Parameters | |
---|---|
mirrored |
boolean : Set to true if the Drawable should be mirrored, false if not. |
void setBounds (int left, int top, int right, int bottom)
为Drawable指定一个边界矩形。 这是drawable在draw()方法被调用时绘制的地方。
Parameters | |
---|---|
left |
int
|
top |
int
|
right |
int
|
bottom |
int
|
void setBounds (Rect bounds)
为Drawable指定一个边界矩形。 这是drawable在draw()方法被调用时绘制的地方。
Parameters | |
---|---|
bounds |
Rect
|
void setCallback (Drawable.Callback cb)
将Drawable.Callback
对象绑定到此Drawable。 需要支持动画可绘制的客户端。
Parameters | |
---|---|
cb |
Drawable.Callback : The client's Callback implementation. |
也可以看看:
void setChangingConfigurations (int configs)
设置该drawable可能更改的配置参数的掩码,要求重新创建它。
Parameters | |
---|---|
configs |
int : A mask of the changing configuration parameters, as defined by ActivityInfo . |
也可以看看:
void setColorFilter (int color, PorterDuff.Mode mode)
指定一个颜色和Porter-Duff模式作为该drawable的颜色过滤器。
方便 setColorFilter(ColorFilter)
,构成 PorterDuffColorFilter
。
注意:设置颜色过滤器将禁用 tint
。
Parameters | |
---|---|
color |
int
|
mode |
PorterDuff.Mode
|
void setColorFilter (ColorFilter colorFilter)
为绘图指定一个可选的颜色过滤器。
如果Drawable具有ColorFilter,则Drawable的绘图内容的每个输出像素在混合到Canvas的渲染目标之前将被颜色过滤器修改。
通过 null
删除任何现有的颜色过滤器。
注意:设置非 null
颜色过滤器会禁用 tint
。
Parameters | |
---|---|
colorFilter |
ColorFilter : The color filter to apply, or null to remove the existing color filter |
void setDither (boolean dither)
此方法在API级别23中已弃用。
该属性被忽略。
将其设置为true时,绘制到每个颜色分量少于8位的设备时,其可绘制的颜色呈现抖动。
Parameters | |
---|---|
dither |
boolean
|
也可以看看:
void setFilterBitmap (boolean filter)
设置为true时,在缩放或旋转时使可绘制滤镜具有双线性采样的位图。
This can improve appearance when bitmaps are rotated. If the drawable does not use bitmaps, this call is ignored.
Parameters | |
---|---|
filter |
boolean
|
void setHotspot (float x, float y)
指定可绘制内的热点位置。
Parameters | |
---|---|
x |
float : The X coordinate of the center of the hotspot |
y |
float : The Y coordinate of the center of the hotspot |
void setHotspotBounds (int left, int top, int right, int bottom)
设置热点受限的边界,如果它们应该与可绘制边界不同。
Parameters | |
---|---|
left |
int : position in pixels of the left bound |
top |
int : position in pixels of the top bound |
right |
int : position in pixels of the right bound |
bottom |
int : position in pixels of the bottom bound |
boolean setLayoutDirection (int layoutDirection)
设置该drawable的布局方向。 应该是已解决的布局方向,因为Drawable没有能力自行完成分辨率。
Parameters | |
---|---|
layoutDirection |
int : the resolved layout direction for the drawable, either LAYOUT_DIRECTION_LTR or LAYOUT_DIRECTION_RTL |
Returns | |
---|---|
boolean |
true if the layout direction change has caused the appearance of the drawable to change such that it needs to be re-drawn, false otherwise |
也可以看看:
boolean setLevel (int level)
指定drawable的级别。 这允许绘图基于连续控制器改变其图像,例如以显示进度或音量级别。
如果您提供的新级别导致Drawable的外观发生变化,那么它负责调用 invalidateSelf()
以重绘本身, 并且将从此函数返回true。
Parameters | |
---|---|
level |
int : The new level, from 0 (minimum) to 10000 (maximum). |
Returns | |
---|---|
boolean |
Returns true if this change in level has caused the appearance of the Drawable to change (hence requiring an invalidate), otherwise returns false. |
boolean setState (int[] stateSet)
为drawable指定一组状态。 这些是特定用例,请参阅相关文档。 作为一个例子,像按钮widget的背景理解以下状态:[ state_focused
, state_pressed
。
如果您提供的新状态导致Drawable的外观发生变化,那么它负责调用 invalidateSelf()
以重绘本身, 并且将从此函数返回true。
注意:Drawable持有 stateSet的引用,直到给它一个新的状态数组,所以在这段时间内你不能修改这个数组。
Parameters | |
---|---|
stateSet |
int : The new set of states to be displayed. |
Returns | |
---|---|
boolean |
Returns true if this change in state has caused the appearance of the Drawable to change (hence requiring an invalidate), otherwise returns false. |
void setTint (int tintColor)
指定该drawable的色调颜色。
Drawable的绘图内容在绘制到屏幕前将与它的色调混合在一起。 这与setColorFilter(int, PorterDuff.Mode)
功能类似。
要清除色调, null
setTintList(ColorStateList)
传递到 setTintList(ColorStateList)
。
Note: Setting a color filter via setColorFilter(ColorFilter)
or setColorFilter(int, PorterDuff.Mode)
overrides tint.
Parameters | |
---|---|
tintColor |
int : Color to use for tinting this drawable |
void setTintList (ColorStateList tint)
指定该drawable的色彩颜色作为颜色状态列表。
Drawable的绘图内容在绘制到屏幕前将与它的色调混合在一起。 这功能与setColorFilter(int, PorterDuff.Mode)
类似。
注意:通过 setColorFilter(ColorFilter)
或 setColorFilter(int, PorterDuff.Mode)
设置颜色过滤器会覆盖色调。
Parameters | |
---|---|
tint |
ColorStateList : Color state list to use for tinting this drawable, or null to clear the tint |
void setTintMode (PorterDuff.Mode tintMode)
指定该drawable的色调混合模式。
定义在绘制屏幕之前,该绘制的色调应该如何混合到绘图中。 默认色调模式是SRC_IN
。
注意:通过 setColorFilter(ColorFilter)
或 setColorFilter(int, PorterDuff.Mode)
设置颜色过滤器会覆盖色调。
Parameters | |
---|---|
tintMode |
PorterDuff.Mode : A Porter-Duff blending mode |
boolean setVisible (boolean visible, boolean restart)
设置此Drawable是否可见。 这通常不会影响Drawable的行为,但它是一些可供Drawables使用的提示,例如,可以决定是否运行动画。
Parameters | |
---|---|
visible |
boolean : Set to true if visible, false if not. |
restart |
boolean : You can supply true here to force the drawable to behave as if it has just become visible, even if it had last been set visible. Used for example to force animations to restart. |
Returns | |
---|---|
boolean |
boolean Returns true if the new visibility is different than its previous state. |
void unscheduleSelf (Runnable what)
使用当前的Drawable.Callback
实现来使此Drawable Drawable.Callback
。 如果Drawable没有附加回调,则不执行任何操作。
Parameters | |
---|---|
what |
Runnable : The runnable that you no longer want called. |
void onBoundsChange (Rect bounds)
如果您根据边界而变化,请在您的子类中覆盖此内容以更改外观。
Parameters | |
---|---|
bounds |
Rect
|
boolean onLevelChange (int level)
如果您根据级别而变化,请在您的子类中覆盖此内容以更改外观。
Parameters | |
---|---|
level |
int
|
Returns | |
---|---|
boolean |
Returns true if the level change has caused the appearance of the Drawable to change (that is, it needs to be drawn), else false if it looks the same and there is no need to redraw it since its last level. |
boolean onStateChange (int[] state)
如果您认识到指定的状态,请在您的子类中覆盖此内容以更改外观。
Parameters | |
---|---|
state |
int
|
Returns | |
---|---|
boolean |
Returns true if the state change has caused the appearance of the Drawable to change (that is, it needs to be drawn), else false if it looks the same and there is no need to redraw it since its last state. |