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

               

</pre><p></p><pre name="code" class="java">  public class BackgroundLayout extends LinearLayout {                public BackgroundLayout(Context context, int position) {                        super(context);                        setWillNotDraw(false);                }                @Override                protected void onDraw(Canvas canvas) {                       super.onDraw(canvas);                }        }

出现这种情况大多是继承自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.


           

猜你喜欢

转载自blog.csdn.net/qq_44894359/article/details/89465760