Well the reason actually makes sense, it is a container... there are no children SO... DO NOT RENDER!
But still, it might have a background... ?
In any case to solve this, you are required to add the following line to all of your custom view constructors:
super(...);
setWillNotDraw(false);
This would force the view group to render... although it has no children.
No comments:
Post a Comment