本文整理汇总了C#中Android.DrawCircle方法的典型用法代码示例。如果您正苦于以下问题:C# Android.DrawCircle方法的具体用法?C# Android.DrawCircle怎么用?C# Android.DrawCircle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Android
的用法示例。
在下文中一共展示了Android.DrawCircle方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OnDraw
protected override void OnDraw(Android.Graphics.Canvas canvas)
{
Paint paint = new Paint () { Color = Color.ForestGreen, StrokeWidth = 5 };
for (int i = 0; i < maxLevel; i++) {
if (i < Level)
paint.SetStyle (Paint.Style.Fill);
else
paint.SetStyle (Paint.Style.Stroke);
canvas.DrawCircle (canvas.Height / 2 + canvas.Height*i , canvas.Height / 2, canvas.Height / 2 - 5, paint);
}
}
示例2: Draw
public override void Draw(Android.Graphics.Canvas canvas,
MapView mapView, bool shadow)
{
base.Draw(canvas, mapView, shadow);
var paint = new Paint();
paint.AntiAlias = true;
paint.Color = Color.Purple;
paint.Alpha = 127;
var gp = new GeoPoint((int)(29.97611 * 1e6), (int)(31.132778 * 1e6));
var pt = mapView.Projection.ToPixels(gp, null);
float distance = mapView.Projection.MetersToEquatorPixels(200);
canvas.DrawCircle(pt.X, pt.Y, distance/2, paint);
}
示例3: OnDraw
protected override void OnDraw(Android.Graphics.Canvas canvas)
{
var radius = (Height / 2) - 4;
var middleX = Width / 2;
var middleY = Height / 2;
var minutes = (int)time.TotalMinutes;
var rotation = minutes / 60;
var color = baseQuadrantColor;
for (int i = 0; i <= rotation; i++) {
var angle = minutes > 60 ? 360 : (int)((minutes * 360f) / 60);
canvas.DrawArc (new RectF (middleX - radius, middleY - radius, middleX + radius, middleY + radius), -90, angle, true, new Paint {
Color = color,
AntiAlias = true,
});
minutes -= 60;
color = Color.Rgb ((byte)Math.Max (0, color.R - 30),
(byte)Math.Max (0, color.G - 30),
(byte)Math.Max (0, color.B - 30));
}
// Draw chrome
Paint chromeBorder = new Paint {
AntiAlias = true,
Color = chromeColor,
StrokeWidth = 1.ToPixels ()
};
chromeBorder.SetStyle (Paint.Style.Stroke);
canvas.DrawCircle (middleX, middleY, radius, chromeBorder);
// Draw markers
var markerPaint = new Paint {
Color = chromeColor,
AntiAlias = true
};
var innerRadius = radius - 6;
for (int i = 0; i < 8; i++) {
var stepAngle = i * Math.PI / 4;
canvas.DrawCircle (middleX - (int)Math.Round (Math.Sin (stepAngle) * innerRadius),
middleY - (int)Math.Round (Math.Cos (stepAngle) * innerRadius),
1, markerPaint);
}
}
示例4: Draw
public override void Draw(Android.Graphics.Canvas canvas)
{
canvas.DrawCircle (mainCenter, mainCenter + 2, radius + radiusBorder, shadowPaint);
canvas.DrawCircle (mainCenter, mainCenter, radius + radiusBorder, darkerBackPaint);
canvas.DrawCircle (mainCenter, mainCenter, radius, backPaint);
canvas.DrawBitmap (icon, mainCenter - icon.Width / 2, mainCenter - icon.Height / 2, imgPaint);
if (Count != 0) {
int bubbleCenter = center - removeRadius - bubbleOffset;
greenPaint.Alpha = redPaint.Alpha = currentBubbleTransparency;
removePaint.Alpha = 255 - currentBubbleTransparency;
canvas.DrawCircle (bubbleCenter, bubbleCenter, removeRadius, removePaint);
canvas.DrawCircle (bubbleCenter, bubbleCenter, innerRadius, Count < 0 ? redPaint : greenPaint);
var c = Math.Abs (Count).ToString ();
var textBounds = new Rect ();
removePaint.GetTextBounds (c, 0, c.Length, textBounds);
canvas.DrawText (c, bubbleCenter, bubbleCenter + textBounds.Height () / 2, removePaint);
}
DrawingCacheEnabled = true;
}