Purpose is to create a panel that clips its child views to a circle or rounded rect.
1. Set the round corners with the visual designer.
2. Use this code:
B4X:
Public Sub SetCircleClip (pnl As B4XView)
#if B4J
Dim circle As JavaObject
Dim radius As Double = Max(pnl.Width / 2, pnl.Height...