当前位置: 首页>>代码示例>>C#>>正文


C# Android.DrawCircle方法代码示例

本文整理汇总了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);
     }
 }
开发者ID:orzech85,项目名称:Cards,代码行数:11,代码来源:LevelView.cs

示例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);

            }
开发者ID:ARMoir,项目名称:mobile-samples,代码行数:17,代码来源:MapViewOverlayScreen.cs

示例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);
            }
        }
开发者ID:SpiderMaster,项目名称:BikeNow,代码行数:46,代码来源:ChronometerView.cs

示例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;
        }
开发者ID:Andrea,项目名称:FriendTab,代码行数:22,代码来源:CategoryBadge.cs


注:本文中的Android.DrawCircle方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。