Class XuiUI
public class XuiUI : View, Drawable.ICallback, IAccessibilityEventSource, KeyEvent.ICallback, IJavaObject, IJavaPeerable, IDisposable
- Inheritance
-
XuiUI
- Implements
- Inherited Members
Constructors
XuiUI(XuiActivity)
public XuiUI(XuiActivity xuiActivity)
Parameters
xuiActivityXuiActivity
Fields
xuiActivity
protected readonly XuiActivity xuiActivity
Field Value
Methods
OnDraw(Canvas)
Implement this to do your drawing.
protected override void OnDraw(Canvas canvas)
Parameters
canvasCanvasthe canvas on which the background will be drawn
Remarks
Implement this to do your drawing.
.
android.view.View.onDraw(android.graphics.Canvas)
Portions of this page are modifications based on work created and shared by the
OnSizeChanged(int, int, int, int)
This is called during layout when the size of this view has changed.
protected override void OnSizeChanged(int w, int h, int oldw, int oldh)
Parameters
wintCurrent width of this view.
hintCurrent height of this view.
oldwintOld width of this view.
oldhintOld height of this view.
Remarks
This is called during layout when the size of this view has changed. If you were just added to the view hierarchy, you're called with the old values of 0.
.
android.view.View.onSizeChanged(int, int, int, int)
Portions of this page are modifications based on work created and shared by the