TagView
TagView copied to clipboard
Recustion with onDraw
I don't know why and why there are no such effect on example, but In my test of view, even I do as your app but from empty project I have infinity recursion
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
drawTags();
}
run drawTags(); which run removeAllViews(); which run invalidate(true); which run onDraw
and again again again