summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/ColorExtensions.cs
blob: 707363edc562716d05d73a743ac72b903b8008ec (plain)
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
using Android.Content.Res;
using AColor = Android.Graphics.Color;

namespace Xamarin.Forms.Platform.Android
{
	public static class ColorExtensions
	{
		static readonly int[][] ColorStates = { new[] { global::Android.Resource.Attribute.StateEnabled }, new[] { -global::Android.Resource.Attribute.StateEnabled } };

		public static AColor ToAndroid(this Color self)
		{
			return new AColor((byte)(byte.MaxValue * self.R), (byte)(byte.MaxValue * self.G), (byte)(byte.MaxValue * self.B), (byte)(byte.MaxValue * self.A));
		}

		public static AColor ToAndroid(this Color self, int defaultColorResourceId)
		{
			if (self == Color.Default)
			{
				using (Resources resources = Resources.System)
					return resources.GetColor(defaultColorResourceId);
			}

			return ToAndroid(self);
		}

		public static AColor ToAndroid(this Color self, Color defaultColor)
		{
			if (self == Color.Default)
				return defaultColor.ToAndroid();

			return ToAndroid(self);
		}

		public static ColorStateList ToAndroidPreserveDisabled(this Color color, ColorStateList defaults)
		{
			int disabled = defaults.GetColorForState(ColorStates[1], color.ToAndroid());
			return new ColorStateList(ColorStates, new[] { color.ToAndroid().ToArgb(), disabled });
		}
	}
}