Android 自定义view 不执行 ondraw的解决办法

2014-11-24 11:17:56 · 作者: · 浏览: 1

出现这种情况大多是继承自layout。在构造方法中添加 setWillNotDraw 问题解决。


相关解释如下


If this view doesn't do any drawing on its own, set this flag to allow further optimizations. By default, this flag is not set on View, but


could be set on some View subclasses such as ViewGroup. Typically, if you override onDraw(Canvas) you should clear this flag.