2015-07-28 17:29:19 这一篇主要看看布局过程 一.布局过程肯定要不可避免的涉及到layout()和onLayout()方法,这两个方法都是定义在View.java中,源码如下: /** * Assign a size and position to a view and all of its * descendants * * <p>This is the second phase of the layout mechanism. * (The first is measur
写这篇博客的缘由.近期因为项目中用到相似一个LinearLayout中水平布局中,有一个TextView和Button,然后对该LinearLayout布局设置点击事件.点击TextView能够触发该点击事件.然而奇怪的是点击Button却不能触发. 然后google到了解决的方法(重写Button,然后重写当中的ontouchEvent方法,且返回值为false).可是不知道原因,这两天看了几位大神的博客,然后自己总结下. public class MyButton extends Butto