现在的位置: 首页 > 综合 > 正文

onAttachedToWindow () 和 onDetachedFromWindow ()

2013年10月01日 ⁄ 综合 ⁄ 共 1011字 ⁄ 字号 评论关闭

重写 ImageView的这两个方法:

具体怎么用的:

protected void onAttachedToWindow()
Description copied from class: View
This is called when the view is attached to a window. At this point it has a Surface and will start drawing. Note that this function is guaranteed to be called before View.onDraw(android.graphics.Canvas), however it may be called any time before the first onDraw
-- including before or after View.onMeasure(int, int).
Overrides: 
onAttachedToWindow in class View
当此view附加到窗体上时调用该方法。在这时,view有了一个用于显示的Surface,将开始绘制。注意,此方法要保证在调用onDraw(Canvas) 之前调用,但可能在调用 onDraw(Canvas) 之前的任何时刻,包括调用 onMeasure(int, int) 之前或之后。
看得出次方法在onDraw方法之前调用,也就是view还没有画出来的时候,可以在此方法中去执行一些初始化的操作,google的AlarmClock动态时钟View就是在这个方法中进行广播的注册。
protected void onDetachedFromWindow()
Description copied from class: View
This is called when the view is detached from a window. At this point it no longer has a surface for drawing.
Overrides: 
onDetachedFromWindow in class AdapterView<ListAdapter>
将视图从窗体上分离的时候调用该方法。这时视图已经不具有可绘制部分,即我们销毁View的时候。我们写的这个View不再显示
 onDetachedFromWindow()正好与onAttachedToWindow()的用法相对应,在destroy view的时候调用,所以可以加入取消广播注册等的操作,google的闹钟程序就是如此。

抱歉!评论已关闭.