博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
onAttachedToWindow () 和 onDetachedFromWindow ()
阅读量:2059 次
发布时间:2019-04-29

本文共 793 字,大约阅读时间需要 2 分钟。

protected void onAttachedToWindow()

 
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 
, however it may be called any time before the first  
onDraw -- including before or after 
.
如果你在自己的view中Override了这个方法。那么我们最关注的是它什么时候调用?

从开发文档中我们可以看出,onAttachedToWindow是在第一次onDraw前调用的。也就是我们写的View在没有绘制出来时调用的,但只会调用一次

比如,我们写状态栏中的时钟的View,在onAttachedToWindow这方法中做初始化工作,比如注册一些广播等等……

 

 

onAttachedToWindow 相反的则是这个方法:

 

protected void onDetachedFromWindow()

Since: 

This is called when the view is detached from a window. At this point it no longer has a surface for drawing.

开发文档就简单的两句。也就是我们销毁View的时候。我们写的这个View不再显示

这时我们就在这个方法做一些收尾工作,如:取消广播注册等等。

转载于:http://blog.sina.com.cn/s/blog_5fc9337301019erl.html

你可能感兴趣的文章
如何删除MySql服务
查看>>
BAT Java和Rti环境变量设置
查看>>
NodeJs npm install 国内镜像
查看>>
python3.5.2 mysql Exccel
查看>>
mysqlDump 导出多表,其中部分表有限制数据内容
查看>>
vi 替换方法
查看>>
BAT 相关
查看>>
ANT集成SVNANT访问SVN(Subversion)
查看>>
高可用架构-- MySQL主从复制的配置
查看>>
jvm调优-从eclipse开始
查看>>
构建微服务:Spring boot 入门篇
查看>>
jvm调优-命令大全(jps jstat jmap jhat jstack jinfo)
查看>>
Spring boot Myibatis
查看>>
spring boot(七):springboot+mybatis多数据源最简解决方案
查看>>
Spring Boot 笔记
查看>>
maven下手动导入ojdbc6.jar
查看>>
SpringBoot、MyBatis配置多数据源XML方法
查看>>
SpringBoot配置属性之MQ
查看>>
SpringBoot集成mybatis
查看>>
Shell文本处理三剑客之grep
查看>>