zoukankan      html  css  js  c++  java
  • Android重写view时onAttachedToWindow () 和 onDetachedFromWindow ()

           在重写View的时候,会遇到这两个方法

    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就是在这个方法中进行广播的注册,代码如下:

    1. @Override  
    2.     protected void onAttachedToWindow() {  
    3.         super.onAttachedToWindow();  
    4.   
    5.         if (Log.LOGV) Log.v("onAttachedToWindow " + this);  
    6.   
    7.         if (mAttached) return;  
    8.         mAttached = true;  
    9.   
    10.         if (mAnimate) {  
    11.             setBackgroundResource(R.drawable.animate_circle);  
    12.             /* Start the animation (looped playback by default). */  
    13.             ((AnimationDrawable) getBackground()).start();  
    14.         }  
    15.   
    16.         if (mLive) {  
    17.             /* monitor time ticks, time changed, timezone */  
    18.             IntentFilter filter = new IntentFilter();  
    19.             filter.addAction(Intent.ACTION_TIME_TICK);  
    20.             filter.addAction(Intent.ACTION_TIME_CHANGED);  
    21.             filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);  
    22.             mContext.registerReceiver(mIntentReceiver, filter, null, mHandler);  
    23.         }  
    24.   
    25.         /* monitor 12/24-hour display preference */  
    26.         mFormatChangeObserver = new FormatChangeObserver();  
    27.         mContext.getContentResolver().registerContentObserver(  
    28.                 Settings.System.CONTENT_URI, true, mFormatChangeObserver);  
    29.   
    30.         updateTime();  
    31.     }  

    另外在屏蔽Home键的时候也会用到

    1. public void onAttachedToWindow() {  
    2. this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);  
    3. super.onAttachedToWindow();  
    4. }  


    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    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>

    将视图从窗体上分离的时候调用该方法。这时视图已经不具有可绘制部分。

     

    onDetachedFromWindow()正好与onAttachedToWindow()的用法相对应,在destroy view的时候调用,所以可以加入取消广播注册等的操作,还是google的闹钟代码:

    1. @Override  
    2.     protected void onDetachedFromWindow() {  
    3.         super.onDetachedFromWindow();  
    4.   
    5.         if (!mAttached) return;  
    6.         mAttached = false;  
    7.   
    8.         Drawable background = getBackground();  
    9.         if (background instanceof AnimationDrawable) {  
    10.             ((AnimationDrawable) background).stop();  
    11.         }  
    12.   
    13.         if (mLive) {  
    14.             mContext.unregisterReceiver(mIntentReceiver);  
    15.         }  
    16.         mContext.getContentResolver().unregisterContentObserver(  
    17.                 mFormatChangeObserver);  
    18.     }  


    具体的用法视个人的需求而定了,自己控制重写就好了。

  • 相关阅读:
    mysql 7.5.8 服务无法启动 服务没有报告任何错误
    Ubuntu 16.04 php卸载
    函数式编程(3)-匿名函数
    函数式编程(2)-返回函数
    函数式编程(1)-高阶变成(3)-sorted
    函数式编程(1)-高阶变成(2)-filter
    函数式编程(1)-高阶变成(1)-map/reduce
    高级特性(4)-生成器
    高级特性(3)-列表生成式
    高级特性(2)-迭代
  • 原文地址:https://www.cnblogs.com/ldq2016/p/6867895.html
Copyright © 2011-2022 走看看