protected override void OnLayout(bool changed, int l, int t, int r, int b)
 {
     Profile.FrameBegin();
     SetMeasuredDimension(r - l, b - t);
     _canvas?.OnLayout(changed, l, t, r, b);
     Profile.FrameEnd();
 }
Esempio n. 2
0
 protected override void OnLayout(bool changed, int l, int t, int r, int b)
 {
     SetMeasuredDimension(r - l, b - t);
     _canvas?.OnLayout(changed, l, t, r, b);
 }