Drawable

来源:互联网 发布:ipadair2淘宝清除缓存 编辑:程序博客网 时间:2024/05/20 16:32

Drawable  

2010-09-07 16:45:19|  分类: Android绘画|举报|字号 订阅

android.graphics.drawable.Drawable是个虚类。
它的直接子类有
BitmapDrawable, ClipDrawable, ColorDrawable, DrawableContainer, GradientDrawable, 
InsetDrawable, LayerDrawable, NinePatchDrawable, PictureDrawable, RotateDrawable, 
ScaleDrawable, ShapeDrawable
间接子类有
AnimationDrawable, LevelListDrawable, PaintDrawable, StateListDrawable, TransitionDrawable

Class Overview

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 provides a generic API for dealing with an underlying visual resource that may take a variety of forms. Unlike a View, a Drawable does not have any facility to receive events or otherwise interact with the user.

In addition to simple drawing, Drawable provides a number of generic mechanisms for its client to interact with what is being drawn:

  • The 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.这个用来设置Drawable要画好大
  • The 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.这个接口用于返回padding,这个padding其实表示的是控件的content的padding
  • The 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.
  • The 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.
  • A Drawable can perform animations by calling back to its client through the Drawable.Callback interface. All clients should support this interface (viasetCallback(Drawable.Callback)) so that animations will work. A simple way to do this is through the system facilities such assetBackgroundDrawable(Drawable) and ImageView.
Drawable定义了一个可画的对象一些接口。
它是抽象类。我们只能实例化它的实现类。Drawable就是一个可画的对象,其可能是一张位图(BitmapDrawable),也可能是一个图形(ShapeDrawable),还有可能是一个图层(LayerDrawable),我们根据画图的需求,创建相应的可画对象。 
注意1:如果要手动调用draw(Canvas canvas)来画Drawable,
一定要在之前通过
void        setBounds(Rect bounds)
来设置其需要画到的区域。
注意2: 可通过setCallback(Drawable.Callback)来实现动画。
构造函数
Public ConstructorsDrawable()主要函数
Public MethodsvoidclearColorFilter()final RectcopyBounds()
Return a copy of the drawable's bounds in a new Rect.
final voidcopyBounds(Rect bounds)
Return a copy of the drawable's bounds in the specified Rect (allocated by the caller).
static DrawablecreateFromPath(String pathName)
Create a drawable from file path name.
static DrawablecreateFromResourceStream(Resources res, TypedValue value, InputStream is, String srcName, BitmapFactory.Options opts)
Create a drawable from an inputstream, using the given resources and value to determine density information.
static DrawablecreateFromResourceStream(Resources res, TypedValue value, InputStream is, String srcName)
Create a drawable from an inputstream, using the given resources and value to determine density information.
static DrawablecreateFromStream(InputStream is, String srcName)
Create a drawable from an inputstream
static DrawablecreateFromXml(Resources r, XmlPullParser parser)
Create a drawable from an XML document.
static DrawablecreateFromXmlInner(Resources r, XmlPullParser parser, AttributeSet attrs)
Create from inside an XML document.
abstract voiddraw(Canvas canvas)
Draw in its bounds (set via setBounds) respecting optional effects such as alpha (set via setAlpha) and color filter (set via setColorFilter).
final RectgetBounds()
Return the drawable's bounds Rect.
Drawable.CallbackgetCallback()
Return the current Drawable.Callback implementation attached to this Drawable.
intgetChangingConfigurations()
Return a mask of the configuration parameters for which this drawable may change, requiring that it be re-created.
Drawable.ConstantStategetConstantState()
Return a Drawable.ConstantState instance that holds the shared state of this Drawable.
DrawablegetCurrent()intgetIntrinsicHeight()
Return the intrinsic height of the underlying drawable object.
intgetIntrinsicWidth()
Return the intrinsic width of the underlying drawable object.
final intgetLevel()
Retrieve the current level.
intgetMinimumHeight()
Returns the minimum height suggested by this Drawable.
intgetMinimumWidth()
Returns the minimum width suggested by this Drawable.
abstract intgetOpacity()
Return the opacity/transparency of this Drawable.
booleangetPadding(Rect padding)
Return in padding the insets suggested by this Drawable for placing content inside the drawable's bounds.
int[]getState()
Describes the current state, as a union of primitve states, such as state_focusedstate_selected, etc.
RegiongetTransparentRegion()
Returns a Region representing the part of the Drawable that is completely transparent.
voidinflate(Resources r, XmlPullParser parser, AttributeSet attrs)
Inflate this Drawable from an XML resource.
voidinvalidateSelf()
Use the current Drawable.Callback implementation to have this Drawable redrawn.
booleanisStateful()
Indicates whether this view will change its appearance based on state.
final booleanisVisible()voidjumpToCurrentState()
If this Drawable does transition animations between states, ask that it immediately jump to the current state and skip any active animations.
Drawablemutate()
Make this drawable mutable.
static intresolveOpacity(int op1, int op2)
Return the appropriate opacity value for two source opacities.
voidscheduleSelf(Runnable what, long when)
Use the current Drawable.Callback implementation to have this Drawable scheduled.
abstract voidsetAlpha(int alpha)
Specify an alpha value for the drawable.
voidsetBounds(int left, int top, int right, int bottom)
Specify a bounding rectangle for the Drawable.
voidsetBounds(Rect bounds)
Specify a bounding rectangle for the Drawable.
final voidsetCallback(Drawable.Callback cb)
Bind a Drawable.Callback object to this Drawable.
voidsetChangingConfigurations(int configs)
Set a mask of the configuration parameters for which this drawable may change, requiring that it be re-created.
abstract voidsetColorFilter(ColorFilter cf)
Specify an optional colorFilter for the drawable.
voidsetColorFilter(int color, PorterDuff.Mode mode)
Specify a color and porterduff mode to be the colorfilter for this drawable.
voidsetDither(boolean dither)
Set to true to have the drawable dither its colors when drawn to a device with fewer than 8-bits per color component.
voidsetFilterBitmap(boolean filter)
Set to true to have the drawable filter its bitmap when scaled or rotated (for drawables that use bitmaps).
final booleansetLevel(int level)
Specify the level for the drawable.
booleansetState(int[] stateSet)
Specify a set of states for the drawable.
booleansetVisible(boolean visible, boolean restart)
Set whether this Drawable is visible.
voidunscheduleSelf(Runnable what)
Use the current Drawable.Callback implementation to have this Drawable unscheduled.
Protected MethodsvoidonBoundsChange(Rect bounds)
Override this in your subclass to change appearance if you recognize the specified state.
booleanonLevelChange(int level)
Override this in your subclass to change appearance if you vary based on level.
booleanonStateChange(int[] state)
Override this in your subclass to change appearance if you recognize the specified state.
直接子类
BitmapDrawable     A Drawable that wraps a bitmap. You can create a BitmapDrawable from a file path, 
                                an input stream, through XML inflation, or from a Bitmap object. 
                            它的本质是个bitmap,它提供了针对bitmap的实现。
注意:Android supports bitmap files in a three formats: .png (preferred), .jpg (acceptable), .gif (discouraged).
也是说Android把.png,.jpg,.gif都是看为BitmapDrawable,Android应该是把这三种图片转为bitmap来处理。
其实任何图片绘画时最后都是转为bitmap来处理

        BitmapDrawable bitmapDrawable=(BitmapDrawable)context.getResources().getDrawable(R.drawable.icon);
        Bitmap bitmap=bitmapDrawable.getBitmap();

可以通过上面的形式把BitmapDrawable转化为Bitmap
ClipDrawable     A Drawable that clips another Drawable based on this Drawable's current level value. 
具体参照《ClipDrawable
ColorDrawable     A specialized Drawable that fills the Canvas with a specified color, with respect to the clip region. 
DrawableContainer
    它应该是专门用来存放Drawable的。
    如何直接使用它还不知道。它不能在XML文件中定义。
    它的子类AnimationDrawable, LevelListDrawable, StateListDrawable        
GradientDrawable     A Drawable with a color gradient for buttons, backgrounds, etc.
    It can be defined in an XML file with the <shape> element. For more information。 
InsetDrawable     A Drawable that insets another Drawable by a specified distance. 
LayerDrawable     A Drawable that manages an array of other Drawables. 
NinePatchDrawable     A resizeable bitmap, with stretchable areas that you define. 
它对应的是.9.png文件。关于此请参考《个性缩放图片NinePatchDrawable
PictureDrawable     Drawable subclass that wraps a Picture, allowing the picture to be used whereever a Drawable is supported. 
RotateDrawable     
A Drawable that can rotate another Drawable based on the current level value. 
ScaleDrawable     A Drawable that changes the size of another Drawable based on its current level value. 
ShapeDrawable     A Drawable object that draws primitive shapes. 关于此请参考《ShapeDrawable
ColorDrawable
    A specialized Drawable that fills the Canvas with a specified color, 
    with respect to the clip region. Note that a ColorDrawable ignores the ColorFilter. 
    It also ignores the Bounds, meaning it will draw everywhere in the current clip, 
    even if setBounds(...) was called with a smaller area.
    It can be defined in an XML file with the <color> element.
注意1:它会忽略掉ColorFilter和Bounds,它会把整个clip区域都填充成指定的颜色。
在XML中定义和引用ColorDrawable
A color resource can also be used as a drawable in XML. For example,
when creating a state list drawable, you can reference a color resource for the android:drawable attribute 
(android:drawable="@color/green
在values下的Colors.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<
color name="red">#FFFF0000</color>
</resources>

像引用Drawable一样引用它
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    android:background="
@color/red"
    />
0 0
原创粉丝点击