-
Notifications
You must be signed in to change notification settings - Fork 204
/
RoundButton.cs
78 lines (61 loc) · 1.47 KB
/
RoundButton.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System;
using Android.App;
using Android.Content;
using Android.Graphics;
using Android.OS;
using Android.Runtime;
using Android.Util;
using Android.Views;
using Android.Widget;
using Java.Lang;
namespace SampleBrowser
{
internal class RoundButton : View ,View.IOnClickListener
{
internal Color fillColor; DoodleDraw doodleDraw;
internal RoundButton(Context context,float height,float width,Color color,DoodleDraw doodle) :
base(context)
{
SetWillNotDraw(false);
this.height = height;
this.width = width;
fillColor = color;
doodleDraw = doodle;
Initialize();
}
public RoundButton(Context context, IAttributeSet attrs) :
base(context, attrs)
{
}
public RoundButton(Context context, IAttributeSet attrs, int defStyle) :
base(context, attrs, defStyle)
{
}
RectF circle;
internal void Initialize()
{
this.SetOnClickListener(this);
circle = new RectF(0, 0, width, height);
Invalidate();
}
protected override void OnDraw(Canvas canvas)
{
base.OnDraw(canvas);
Paint buttonPaint = new Paint(PaintFlags.AntiAlias);
if (circle != null)
{
buttonPaint.AntiAlias = true;
buttonPaint.SetStyle(Paint.Style.Fill);
buttonPaint.Color = fillColor;
buttonPaint.Dither = true;
canvas.DrawRoundRect(circle, 360, 360, buttonPaint);
}
}
public void OnClick(View v)
{
if (doodleDraw != null)
doodleDraw.drawColor = (v as RoundButton).fillColor;
}
float width, height;
}
}