I have met a problem that onDraw() is not called after invalidate().
To be brief, when I add the views(children) into my customized container view(parent), at some time onDraw() could not be called even I have called invalidate() on the child view.I have used both my customized views and original view provided in SDK(such as TextView, ImageView) as the child view. The situation are the same.
I doubt there are some bugs in my customized container view. I derived container view from LinearLayout, and override it onMeasure() and onLayout() method.
I am not quite sure whether codes could be post here, so I can just only describe the problem in text. So I just want to know in what situation that no onDraw() happens when the invalidate() is called?

