wxr
2020-07-06 23c075a9c27946773feccf05abc90489a6bf5203
Shared.Droid/UI/GestureLockView.cs
@@ -79,20 +79,31 @@
        {
            set
            {
                byte r, g, b, a;
                r = (byte)(value / 256 / 256 % 256);
                g = (byte)(value / 256 % 256);
                b = (byte)(value % 256);
                a = (byte)(value / 256 / 256 / 256 % 256);
                mHDLGestureLockView.SetUnmatchedPathColor(Android.Graphics.Color.Argb(a, r, g, b));
            }
        }
        /// <summary>
        /// 默认圆点背景颜色
        /// </summary>
        /// <value>线颜色</value>
        public uint LockViewNormalColor
        {
            set
            {
                byte r, g, b, a;
                r = (byte)(value / 256 / 256 % 256);
                g = (byte)(value / 256 % 256);
                b = (byte)(value % 256);
                a = (byte)(value / 256 / 256 / 256 % 256);
                mHDLGestureLockView.SetBorderColor(Android.Graphics.Color.Argb(a, r, g, b));
            }
        }
        /// <summary>
        /// 显示手势解锁view 是否显示正确
@@ -109,7 +120,14 @@
            }
        }
        /// <summary>
        /// 2020-06-18 新增
        /// 设置是否为实心圆形解锁样式
        /// </summary>
        public void SetSolidType(bool isTrue)
        {
            mHDLGestureLockView.SetSolidType(isTrue);
        }