码迷,mamicode.com
首页 > 其他好文 > 详细

小知识点

时间:2016-05-18 21:27:30      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

1、在ViewGroup中使用onLayout()中,获取子元素的width and height,不能用getWidth()/getHeight 必须使用getMeasureWidth()/Height()

翻阅Android开发艺术探索发现,getWidth()/height()是在onLayout()方法之后才初始化的。

2.在ViewGroup使用onLayout()中,调用子元素的layout()方法的时候,其left,top,right,bottom是相对于容器的,不是相对于屏幕的。

也就是说,不用在遍历子元素的layout()中,加上父元素的位置参数。

3、点击事件:当onTouchEvent()返回true的时候,就不会再次调用onIntercepter()方法了。

小知识点

标签:

原文地址:http://www.cnblogs.com/rookiechen/p/5506288.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!