wxr
2020-06-15 b8e94316e41eba72d927d5ca7d931b26139ee8ff
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
using System;
using Android.Graphics.Drawables;
using Android.Graphics;
using Android.Views.Animations;
using Android.Views;
using Java.Lang.Ref;
using static Shared.HDLUtils;
using Android.OS;
 
namespace Shared
{
 
    /// <summary>
    /// 根视图
    /// </summary>
    internal class RootView : ViewGroup { }
    /// <summary>
    /// 所有类的基类
    /// </summary>
    public abstract class View
    {
        ~View()
        {
//#if DEBUG
            Shared.HDLUtils.WriteLine("=====" + GetType() + " " + Name);
//#endif
            if (this is ViewGroup)
            {
                var viewGroup = this as ViewGroup;
                if (viewGroup.realViewGroup != AndroidView)
                {
                    //foreach (var view in viewGroup.viewList)
                    //{
                    //    view.AndroidView.Dispose();
                    //}
                    viewGroup.realViewGroup?.Dispose();
                }
            }
            
            AndroidView?.Dispose();
        }
 
       
        /// <summary>
        /// 是否需要更新控件
        /// </summary>
        /// <value>The is need refresh.</value>
        protected bool IsCanRefresh
        {
            get
            {
                View tempView = Parent;
                while (tempView != null)
                {
                    //根控件,找到根控件后说明已经成功加入了父控件
                    if (tempView.GetType() == typeof(RootView))
                    {
                        return true;
                    }
                    tempView = tempView.Parent;
                }
                return false;
            }
        }
 
        internal virtual void ClearAllViewEvent()
        {
            //try
            //{
            //    lock (dimageCached)
            //    {
            //        foreach (var key in dimageCached.KeySet())
            //        {
            //            var keyString = key.ToString();
            //            if (keyString.StartsWith($"{GetHashCode()}_", StringComparison.Ordinal))
            //            {
            //                dimageCached.Remove(keyString);
            //                Shared.HDLUtils.WriteLine("=====释放图片" + GetType() + " " + Name);
            //                (dimageCached.Get(keyString) as Drawable)?.Dispose();
            //                break;
            //            }
            //        }
            //    }
            //}
            //catch { }
        }
        internal virtual void InitAllViewEvent() { }
 
        /// <summary>
        /// 当前对应的AndroidView控件
        /// </summary>
        public Android.Views.View AndroidView { get; set; }
 
 
        /// <summary>
        /// 是否使能
        /// </summary>
        /// <value>The enable.</value>
        public virtual bool Enable
        {
            get
            {
                return AndroidView.Enabled;
            }
            set
            {
                AndroidView.Enabled = value;
            }
        }
 
        int height = LayoutParams.MatchParent;
        /// <summary>
        /// 控件的高度
        /// </summary>
        /// <value>The height.</value>
        public virtual int Height
        {
            get
            {
                return AndroidView.LayoutParameters == null ? height : AndroidView.LayoutParameters.Height;
            }
            set
            {
                height = value;
 
                if (!IsCanRefresh)
                    return;
 
                var layoutParameters = AndroidView.LayoutParameters;
                if (value == LayoutParams.MatchParent)
                {
                    if (layoutParameters.Height != Parent.Height)
                    {
                        layoutParameters.Height = Parent.Height;
                        AndroidView.LayoutParameters = layoutParameters;
                        SizeChangeEventHandler?.Invoke(this, new Size(layoutParameters.Width, layoutParameters.Height));
                    }
                }
                else
                {
                    if (layoutParameters.Height != value)
                    {
                        layoutParameters.Height = value;
                        AndroidView.LayoutParameters = layoutParameters;
                        SizeChangeEventHandler?.Invoke(this, new Size(layoutParameters.Width, layoutParameters.Height));
                    }
                }
            }
        }
 
        int width = LayoutParams.MatchParent;
        /// <summary>
        /// 控件宽度
        /// </summary>
        /// <value>The width.</value>
        public virtual int Width
        {
            get
            {
                return AndroidView.LayoutParameters == null ? width : AndroidView.LayoutParameters.Width;
            }
            set
            {
                width = value;
 
                if (!IsCanRefresh)
                    return;
 
                var layoutParameters = AndroidView.LayoutParameters;
                if (value == LayoutParams.MatchParent)
                {
                    if (layoutParameters.Width != Parent.Width)
                    {
                        layoutParameters.Width = Parent.Width;
                        AndroidView.LayoutParameters = layoutParameters;
                        SizeChangeEventHandler?.Invoke(this, new Size(layoutParameters.Width, layoutParameters.Height));
                    }
                }
                else
                {
                    if (layoutParameters.Width != value)
                    {
                        layoutParameters.Width = value;
                        AndroidView.LayoutParameters = layoutParameters;
                        SizeChangeEventHandler?.Invoke(this, new Size(layoutParameters.Width, layoutParameters.Height));
                    }
                }
            }
        }
 
        /// <summary>
        /// 刷新界面
        /// </summary>
        public virtual void Refresh()
        {
            Width = width;
            Height = height;
            Gravity = gravity;
            Animate = animate;
            Radius = tempRadius;
        }
 
        /// <summary>
        /// 名称
        /// </summary>
        /// <value>The name.</value>
        public string Name { get; set; }
 
        int x;
        /// <summary>
        /// X轴坐标
        /// </summary>
        /// <value>The x.</value>
        public int X
        {
            get
            {
                return (int)AndroidView.GetX();
            }
            set
            {
                x = value;
 
                if (!IsCanRefresh)
                {
                    return;
                }
 
                if (Parent is HorizontalPages|| Parent is HorizontalScrolViewLayout)
                {
                    return;
                }
                else
                {
                    AndroidView.SetX(value);
                }
            }
        }
 
        int y;
        /// <summary>
        /// Y轴坐标
        /// </summary>
        /// <value>The y.</value>
        public int Y
        {
            get
            {
                return (int)AndroidView.GetY();
            }
            set
            {
                y = value;
 
                if (!IsCanRefresh)
                {
                    return;
                }
 
                if (Parent.GetType() == typeof(VerticalScrolViewLayout))
                {
                    return;
                }
                else
                {
                    AndroidView.SetY(value);
                }
            }
        }
 
        Gravity gravity = Gravity.Frame;
        /// <summary>
        /// 控件相对于父控件的对齐方式
        /// </summary>
        /// <value>The gravity.</value>
        public Gravity Gravity
        {
            get
            {
                return gravity;
            }
            set
            {
                gravity = value;
                if (!IsCanRefresh)
                {
                    return;
                }
 
                switch (value)
                {
                    case Gravity.TopLeft:
                        X = 0;
                        Y = 0;
                        break;
                    case Gravity.TopCenter:
                        X = (Parent.Width - Width) / 2;
                        Y = 0;
                        break;
                    case Gravity.TopRight:
                        X = Parent.Width - Width;
                        Y = 0;
                        break;
                    case Gravity.CenterLeft:
                        X = 0;
                        Y = (Parent.Height - Height) / 2;
                        break;
                    case Gravity.Center:
                        X = (Parent.Width - Width) / 2;
                        Y = (Parent.Height - Height) / 2;
                        break;
                    case Gravity.CenterRight:
                        X = Parent.Width - Width;
                        Y = (Parent.Height - Height) / 2;
                        break;
                    case Gravity.BottomLeft:
                        X = 0;
                        Y = Parent.Height - Height;
                        break;
                    case Gravity.BottomCenter:
                        X = (Parent.Width - Width) / 2;
                        Y = Parent.Height - Height;
                        break;
                    case Gravity.BottomRight:
                        X = Parent.Width - Width;
                        Y = Parent.Height - Height;
                        break;
                    case Gravity.CenterVertical:
                        X = x;
                        Y = (Parent.Height - Height) / 2;
                        break;
                    case Gravity.CenterHorizontal:
                        X = (Parent.Width - Width) / 2;
                        Y = y;
                        break;
                    case Gravity.Frame:
                        X = x;
                        Y = y;
                        break;
                }
            }
        }
 
        /// <summary>
        /// 左边线位置
        /// </summary>
        /// <value>The bottom.</value>
        public int Bottom
        {
            get
            {
                return Height + Y;
            }
        }
 
        /// <summary>
        ///  右边线位置
        /// </summary>
        /// <value>The right.</value>
        public int Right
        {
            get
            {
                return Width + X;
            }
        }
 
        /// <summary>
        /// 当前窗口大小及位置
        /// </summary>
        /// <value>The frame.</value>
        public virtual Size Size
        {
            get
            {
                return new Size(Width, Height);
            }
            set
            {
                Width = value.Width;
                Height = value.Height;
            }
        }
 
        /// <summary>
        /// 父容器
        /// </summary>
        /// <value>The parent.</value>
        public ViewGroup Parent { get; internal set; }
 
        /// <summary>
        /// 处理点击代理
        /// </summary>
        /// <param name="sender">Sender.</param>
        /// <param name="e">E.</param>
        internal virtual bool TouchEvent(MotionEvent e)
        {
            if (!this.Enable)
            {
                return false;
            }
            switch (e.Action)
            {
                case MotionEventActions.Down:
                    isUp = false;
                    longClicked = false;
 
                    MouseDownEventHandler?.Invoke(this, new MouseEventArgs { X = (int)e.GetX(), Y = (int)e.GetY() });
                    if (MouseLongEventHandler != null)
                    {
                        try
                        {
                            if (thread != null && thread.IsAlive)
                            {
                                thread.Abort();
                            }
                            thread = new System.Threading.Thread(() =>
                            {
                                System.Threading.Thread.Sleep(800);
                                //Shared.HDLUtils.WriteLine("=====" + isUp);
                                if (!isUp)
                                {
                                    longClicked = true;
                                    Application.RunOnMainThread(() =>
                                    {
                                        MouseLongEventHandler(this, new MouseEventArgs { X = (int)e.GetX(), Y = (int)e.GetY() });
                                    });
                                }
                            })
                            { IsBackground = true };
                            thread.Start();
                        }
                        catch { }
                    }
                    break;
                case MotionEventActions.Move:
                    MouseMoveEventHandler?.Invoke(this, new MouseEventArgs { X = (int)e.GetX(), Y = (int)e.GetY() });
                    break;
                case MotionEventActions.Up:
                    isUp = true;
                    if (!longClicked && isTouchPointInView(AndroidView, e.RawX, e.RawY))
                    {
                        MouseUpEventHandler?.Invoke(this, new MouseEventArgs { X = (int)e.GetX(), Y = (int)e.GetY() });
                    }
                    break;
                case MotionEventActions.Cancel:
                    isUp = true;
                    break;
            }
            return true;
        }
 
        private bool isTouchPointInView(Android.Views.View targetView, float xAxis, float yAxis)
        {
            if (targetView == null)
            {
                return false;
            }
            var location = new int[2];
            targetView.GetLocationOnScreen(location);
            int left = location[0];
            int top = location[1];
            int right = left + targetView.Width;
            int bottom = top + targetView.Height;
            if (yAxis >= top && yAxis <= bottom && xAxis >= left
                    && xAxis <= right)
            {
                return true;
            }
            return false;
        }
 
        bool isUp ;
        bool longClicked;
 
        /// <summary>
        /// 点击按下事件
        /// </summary>
        public EventHandler<MouseEventArgs> MouseDownEventHandler;
 
        /// <summary>
        /// 控件上移动事件
        /// </summary>
        public EventHandler<MouseEventArgs> MouseMoveEventHandler;
 
        /// <summary>
        /// 点击弹起事件
        /// </summary>
        public EventHandler<MouseEventArgs> MouseUpEventHandler;
 
        System.Threading.Thread thread;
        /// <summary>
        /// 长按点击事件
        /// </summary>
        public EventHandler<MouseEventArgs> MouseLongEventHandler;
 
 
        /// <summary>
        /// 大小变化事件
        /// </summary>
        public EventHandler<Size> SizeChangeEventHandler;
 
        /// <summary>
        /// 将控制移到最前
        /// </summary>
        public virtual void BringToFront()
        {
            AndroidView.BringToFront();
        }
 
        Animate animate = Animate.None;
        /// <summary>
        /// 动画方式
        /// </summary>
        /// <value>The animate.</value>
        public Animate Animate
        {
            get
            {
                return animate;
            }
            set
            {
                animate = value;
                if (!IsCanRefresh)
                {
                    return;
                }
                AndroidView.ClearAnimation();
 
                switch (animate)
                {
                    case Animate.DownToUp:
                        {
                            AndroidView.Animation = new TranslateAnimation(
                                Dimension.RelativeToSelf, 0,
                                Dimension.RelativeToSelf, 0,
                                Dimension.RelativeToSelf, 1.0f,
                                Dimension.RelativeToSelf, 0)
                            { Duration = 500 }; // 13828497568
                            AndroidView.Animation.StartNow();
                        }
                        break;
                    case Animate.UpToDown:
                        {
                            AndroidView.Animation = new TranslateAnimation(
                                Dimension.RelativeToSelf, 0,
                                Dimension.RelativeToSelf, 0,
                                Dimension.RelativeToSelf, -1.0f,
                                Dimension.RelativeToSelf, 0)
                            { Duration = 500 };
                            AndroidView.Animation.StartNow();
                        }
                        break;
                    case Animate.LeftToRight:
                        {
                            AndroidView.Animation = new TranslateAnimation(
                                Dimension.RelativeToSelf, -1.0f,
                                Dimension.RelativeToSelf, 0,
                                Dimension.RelativeToSelf, 0f,
                                Dimension.RelativeToSelf, 0)
                            { Duration = 500 };
                            AndroidView.Animation.StartNow();
                        }
                        break;
                    case Animate.RightToLeft:
                        {
                            AndroidView.Animation = new TranslateAnimation(
                               Dimension.RelativeToSelf, 1.0f,
                               Dimension.RelativeToSelf, 0,
                               Dimension.RelativeToSelf, 0f,
                                Dimension.RelativeToSelf, 0)
                            { Duration = 500 };
                            AndroidView.Animation.StartNow();
                        }
                        break;
                    case Animate.Rotation:
                        {
                            AndroidView.Animation = new RotateAnimation(
                                0,
                                359,
                                X + Width / 2.0f,
                                Y + Height / 2.0f
                            )
                            { Duration = 16000, RepeatCount = -1 };
                            AndroidView.Animation.StartNow();
                        }
                        break;
                }
 
            }
        }
 
        static Java.Util.HashMap dimageCached = new Java.Util.HashMap();
 
        /// <summary>
        /// 设备控件背景图
        /// </summary>
        /// <param name="filePath"></param>
        protected bool Background(string filePath)
        {
            try
            {
                var drawable = getDrawable(filePath);
                if (this.GetType() == typeof(ImageView))
                {
                    (AndroidView as AndroidImageView).SetImageDrawable(drawable);
                }
                else
                {
                    AndroidView.Background = drawable;
                }
 
                if (null != drawable)
                {
                    return true;
                }
            }
            catch { }
            return false;
        }
 
        protected bool Background(string filePath, Android.Views.View view)
        {
            AndroidView.Background = getDrawable(filePath);
 
            if (null == view.Background)
            {
                return false;
            }
            else
            {
 
                return true;
            }
        }
 
        protected Drawable Bytes2Drawable(byte[] b)
        {
            var bitmap = Bytes2Bitmap(b);
            return bitmap2Drawable(bitmap);
        }
 
        protected Drawable bitmap2Drawable(Bitmap bitmap)
        {
            return new BitmapDrawable(bitmap);
        }
 
 
        // byte[]转换成Bitmap
        protected Bitmap Bytes2Bitmap(byte[] b)
        {
            if (b.Length != 0)
            {
                return BitmapFactory.DecodeByteArray(b, 0, b.Length);
            }
            return null;
        }
 
        protected Drawable getDrawable(string filePath)
        {
            try
            {
                if (filePath == null)
                {
                    return null;
                }
                var newFilePath = IO.FileUtils.GetImageFilePath(filePath);
                if (string.IsNullOrEmpty(newFilePath))
                {
                    AndroidView.Background = null;
                    return null;
                }
 
                var mappingPath = "";// $"{this.GetHashCode()}_";
                if (AndroidView.LayoutParameters != null)
                {
                    mappingPath += AndroidView.LayoutParameters.Width + "-" + AndroidView.LayoutParameters.Height + "-";
                }
                mappingPath += newFilePath;
 
                
 
                //lock (dimageCached)
                {
                    if (dimageCached.ContainsKey(mappingPath) && dimageCached.Get(mappingPath) != null)
                    {
                        return (Drawable)dimageCached.Get(mappingPath);
                    }
                }
                //Shared.HDLUtils.WriteLine(dimageCached.Size() + "  ");
                var tempBitmapUtiles = AndroidDrawableUtiles.GetAndroidDrawableUtiles(newFilePath, Width, Height);
 
                //加载二次
                if (null == tempBitmapUtiles)
                {
                    tempBitmapUtiles = AndroidDrawableUtiles.GetAndroidDrawableUtiles(newFilePath, Width, Height);
                }
 
                //两次加载图片都失败,直接返回
                if (null == tempBitmapUtiles)
                {
                    AndroidView.Background = null;
                    return null;
                }
                //if (mappingPath.Contains("/Room/") || mappingPath.Contains("/Scene/"))
                //{
                //    return tempBitmapUtiles.Drawable;
                //}
                //lock (dimageCached)
                {
                    try
                    {
                        if (dimageCached.ContainsKey(mappingPath))
                        {
                            dimageCached.Remove(mappingPath);
                            dimageCached.Put(mappingPath, tempBitmapUtiles.Drawable);
                        }
                        else
                        {
                            dimageCached.Put(mappingPath, tempBitmapUtiles.Drawable);
                        }
                        return tempBitmapUtiles.Drawable;
                    }
                    catch
                    {
                        return null;
                    }
                }
            }
            catch {
                return null;
            }
        }
 
 
        /// <summary>
        /// 内边距
        /// </summary>
        /// <value>The padding.</value>
        public virtual Padding Padding
        {
            get;
            set;
        }
 
        /// <summary>
        /// 方便开发者开发
        /// </summary>
        public object Tag;
 
        System.Collections.Generic.Dictionary<string, object> tag;
        /// <summary>
        /// 增加键值对
        /// </summary>
        /// <param name="key">Key.</param>
        /// <param name="value">Value.</param>
        public void AddTag(string key, object value)
        {
            if (tag == null)
            {
                tag = new System.Collections.Generic.Dictionary<string, object>();
            }
            tag.Remove(key);
            tag.Add(key, value);
        }
 
        /// <summary>
        /// 删除指定键值对
        /// </summary>
        /// <param name="key">Key.</param>
        public void RemoveTag(string key)
        {
            if (tag == null)
            {
                return;
            }
            tag.Remove(key);
        }
 
        /// <summary>
        /// 根据键获取值
        /// </summary>
        /// <returns>The tag by key.</returns>
        /// <param name="key">Key.</param>
        public object GetTagByKey(string key)
        {
            if (tag == null)
            {
                return null;
            }
            object value;
            tag.TryGetValue(key, out value);
            return value;
        }
 
 
 
        /// <summary>
        /// 全部删除Tag
        /// </summary>
        /// <returns>The tag.</returns>
        public void ClearTag()
        {
            if (tag != null)
            {
                tag.Clear();
            }
        }
 
        /// <summary>
        /// 是否显示
        /// </summary>
        /// <value><c>true</c> if visible; otherwise, <c>false</c>.</value>
        public bool Visible
        {
            get
            {
                if (AndroidView.Visibility == Android.Views.ViewStates.Visible)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            set
            {
                if (value)
                {
                    AndroidView.Visibility = Android.Views.ViewStates.Visible;
                }
                else
                {
                    AndroidView.Visibility = Android.Views.ViewStates.Invisible;
                }
            }
        }
 
        /// <summary>
        /// 从父视图中移除
        /// </summary>
        public virtual void RemoveFromParent()
        {
            if (Parent == null)
            {
                return;
            }
            Parent.Remove(this);
        }
 
        /// <summary>
        ///  透明度设置
        /// </summary>
        /// <value>The alpha.</value>
        public float Alpha
        {
            get
            {
                return AndroidView.Alpha;
            }
            set
            {
                AndroidView.Alpha = value;
            }
        }
 
        uint backgroundColor;
        /// <summary>
        /// 背景颜色
        /// </summary>
        /// <value>The color of the background.</value>
        public virtual uint BackgroundColor
        {
            get
            {
                return backgroundColor;
            }
            set
            {
                backgroundColor = value;
 
                if (this.GetType() != typeof(ImageView))
                {
                    if (AndroidView.Background == null || AndroidView.Background.GetType() != typeof(GradientDrawable))
                    {
                        AndroidView.Background = new Android.Graphics.Drawables.GradientDrawable();
                    }
 
                    var gradientDrawable = (GradientDrawable)AndroidView.Background;
                    //gradientDrawable.SetCornerRadius(DensityUtil.Dip2Px(Radius));
 
                    if (IsSetAloneRadius)
                    {
                        gradientDrawable.SetCornerRadii(GetCornerRadii());
                    }
                    else {
                        gradientDrawable.SetCornerRadius(Radius);
                    }
                
 
                    byte r, g, b, a;
                    r = (byte)(BorderColor / 256 / 256 % 256);
                    g = (byte)(BorderColor / 256 % 256);
                    b = (byte)(BorderColor % 256);
                    a = (byte)(BorderColor / 256 / 256 / 256 % 256);
                    gradientDrawable.SetStroke((int)BorderWidth, Android.Graphics.Color.Argb(a, r, g, b));
 
                    r = (byte)(backgroundColor / 256 / 256 % 256);
                    g = (byte)(backgroundColor / 256 % 256);
                    b = (byte)(backgroundColor % 256);
                    a = (byte)(backgroundColor / 256 / 256 / 256 % 256);
                    gradientDrawable.SetColor(Android.Graphics.Color.Argb(a, r, g, b).ToArgb());
                }
            }
        }
 
   
        /// <summary>
        /// 获取指定圆角属性
        /// </summary>
        /// <value>The corner.</value>
        private float[] GetCornerRadii()
        {
            float[] mCornerRadius = new float[8];
            mCornerRadius[0] = topLeftRadius;
            mCornerRadius[1] = topLeftRadius;
 
            mCornerRadius[2] = topRightRadius;
            mCornerRadius[3] = topRightRadius;
 
            mCornerRadius[4] = bottomRightRadius;
            mCornerRadius[5] = bottomRightRadius;
 
            mCornerRadius[6] = bottomLeftRadius;
            mCornerRadius[7] = bottomLeftRadius;
            return mCornerRadius;
        }
 
        //是否单独设置圆角
        public bool IsSetAloneRadius;
        //4个圆角分别对应的值
        float topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius;
        public float mAloneRadius;
        public int mRadiusId;
        /// <summary>
        /// 指定位置 设置相同的圆角
        /// </summary>
        public void SetCornerWithSameRadius(float mRadius, int mSetID)
        {
            try
            {
                mAloneRadius = mRadius;
                IsSetAloneRadius = true;
                mRadiusId = mSetID;
                topLeftRadius = (mSetID & 1) == 1 ? mAloneRadius : 0;
                topRightRadius = (mSetID >> 1 & 1) == 1 ? mAloneRadius : 0;
                bottomLeftRadius = (mSetID >> 2 & 1) == 1 ? mAloneRadius : 0;
                bottomRightRadius = (mSetID >> 3 & 1) == 1 ? mAloneRadius : 0;
 
                BackgroundColor = backgroundColor;
            }
            catch
            {
            }
        }
 
        internal uint radius, tempRadius;
        /// <summary>
        /// 圆角大小
        /// </summary>
        /// <value>The corner.</value>
        public virtual uint Radius
        {
            get
            {
                return radius;
            }
            set
            {
                IsSetAloneRadius = false;
                tempRadius = value;
                if (!IsCanRefresh || Radius == value)
                {
                    return;
                }
                radius = value;
                BackgroundColor = backgroundColor;
            }
        }
 
        uint borderWidth;
        /// <summary>
        /// 边框线大小
        /// </summary>
        /// <value>The width of the border.</value>
        public uint BorderWidth
        {
            get
            {
                return borderWidth;
            }
            set
            {
                borderWidth = value;
 
                BackgroundColor = backgroundColor;
            }
        }
 
        uint borderColor = 0xFFCCCCCC;
        /// <summary>
        /// 边框颜色
        /// </summary>
        /// <value>The color of the border.</value>
        public uint BorderColor
        {
            get
            {
                return borderColor;
            }
            set
            {
                borderColor = value;
                BackgroundColor = backgroundColor;
            }
        }
 
        protected int Dip2Px(float dpValue)
        {
            float scale = Application.Activity.Resources.DisplayMetrics.Density;
            return (int)(dpValue * scale + 0.5f);
        }
 
        /// <summary>
        /// 旋转View
        /// </summary>
        /// <value>旋转角度</value>
        public void SetRotation(float mRotation)
        {
 
            AndroidView.Rotation = mRotation;
        }
 
        /// <summary>
        /// 设置阴影效果
        /// </summary>
        /// <value>是否显示阴影</value>
        public void SetViewShadow(bool bShow, float mOffsetY = 5.0f)
        {
            if((int)Build.VERSION.SdkInt >= 21)
            {
                //AndroidView.TranslationZ = bShow ? Dip2Px(mOffsetY) : 0;
                AndroidView.Elevation = bShow ? Dip2Px(mOffsetY) : 0;
            }
            
        }
    }
 
 
    public class Size
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="Shared.Frame"/> class.
        /// </summary>
        /// <param name="x">X轴</param>
        /// <param name="y">Y轴</param>
        /// <param name="width">宽度</param>
        /// <param name="height">高度</param>
        public Size(int width, int height)
        {
            Width = width;
            Height = height;
        }
 
        /// <summary>
        /// 宽度
        /// </summary>
        public int Width
        {
            get;
            set;
        }
        /// <summary>
        /// 高度
        /// </summary>
        public int Height
        {
            get;
            set;
        }
 
 
 
    }
 
    /// <summary>
    /// 内边距
    /// </summary>
    public class Padding
    {
        public Padding(int top, int left, int bottom, int right)
        {
            Top = top;
            Left = left;
            Bottom = bottom;
            Right = right;
        }
        /// <summary>
        /// 顶部
        /// </summary>
        public int Top
        {
            get;
            set;
        }
        /// <summary>
        /// 左边
        /// </summary>
        public int Left
        {
            get;
            set;
        }
        /// <summary>
        /// 底部
        /// </summary>
        public int Bottom
        {
            get;
            set;
        }
        /// <summary>
        /// 右边
        /// </summary>
        public int Right
        {
            get;
            set;
        }
    }
 
    internal class AndroidDrawableUtiles
    {
        /// <summary>
        /// 图片对象
        /// </summary>
        public Drawable Drawable;
 
        /// <summary>
        /// 图片的高度
        /// </summary>
        public int Height;
        /// <summary>
        /// 图片的宽度
        /// </summary>
        public int Width;
 
        /// <summary>
        /// Initializes a new instance of the <see cref="Shared.AndroidDrawableUtiles"/> class.
        /// </summary>
        /// <param name="bitmapDrawable">Bitmap drawable.</param>
        /// <param name="height">Height.</param>
        /// <param name="width">Width.</param>
        public AndroidDrawableUtiles(Drawable bitmapDrawable, int height, int width)
        {
            Drawable = bitmapDrawable;
            Height = height;
            Width = width;
        }
 
        
           
 
        static Bitmap readBitmapFromFileDescriptor(string filePath, int width, int height)
        {
            try
            {
                var fis = new Java.IO.FileInputStream(filePath);
                var options = new BitmapFactory.Options();
                options.InJustDecodeBounds = true;
                BitmapFactory.DecodeFileDescriptor(fis.FD, null, options);
                float srcWidth = options.OutWidth;
                float srcHeight = options.OutHeight;
                int inSampleSize = 1;
 
                if (srcHeight > height || srcWidth > width)
                {
                    if (srcWidth > srcHeight)
                    {
                        inSampleSize = (int)Math.Round(srcHeight / height);
                    }
                    else
                    {
                        inSampleSize = (int)Math.Round(srcWidth / width);
                    }
                }
 
                options.InJustDecodeBounds = false;
                options.InSampleSize = inSampleSize;
 
                return (Bitmap)new SoftReference(BitmapFactory.DecodeFileDescriptor(fis.FD, null, options)).Get();
            }
            catch (Exception ex)
            {
            }
            return null;
        }
 
        public static AndroidDrawableUtiles GetAndroidDrawableUtiles(string filePath, int width, int height)
        {
            var bitmap = readBitmapFromFileDescriptor(filePath, width, height);
            //BitmapFactory.Options options = new BitmapFactory.Options();
            //options.InJustDecodeBounds = true;
            //BitmapFactory.DecodeFile(filePath, options);
            ////图片不存在,直接返回
            //if (0 == options.OutWidth || 0 == options.OutHeight)
            //{
            //    Shared.HDLUtils.WriteLine(filePath+"找不到");
            //    return null;
            //}
            //options.InSampleSize = getFitInSampleSize(width, height, options);
            //options.InJustDecodeBounds = false;
            //var bitmap = BitmapFactory.DecodeFile(filePath, options);
            //var drawable = new BitmapDrawable(bitmap);
            //if (drawable.Bitmap != bitmap && !bitmap.IsRecycled)
            //{
            //    Shared.HDLUtils.WriteLine("释放图片资源:" + filePath);
            //    bitmap.Recycle();
            //}
            //var drawable = new BitmapDrawable(bitmap);
            if (bitmap == null)
            {
                return new AndroidDrawableUtiles(null, bitmap.Width, bitmap.Height);
            }
            else
            {
                return new AndroidDrawableUtiles((BitmapDrawable)new SoftReference(new BitmapDrawable(bitmap)).Get(), bitmap.Width, bitmap.Height);
            }
        }
        static int getFitInSampleSize(int reqWidth, int reqHeight, BitmapFactory.Options options)
        {
            int inSampleSize = 1;
            if (options.OutWidth > reqWidth || options.OutHeight > reqHeight)
            {
                int widthRatio = (int)Math.Round(options.OutWidth * 1.0 / reqWidth);
                int heightRatio = (int)Math.Round(options.OutHeight * 1.0 / reqHeight);
                inSampleSize = Math.Min(widthRatio, heightRatio);
            }
            return inSampleSize;
        }
    }
 
    /// <summary>
    /// 点击时基本参数
    /// </summary>
    public class MouseEventArgs : EventArgs
    {
        /// <summary>
        /// X坐标
        /// </summary>
        public float X;
        /// <summary>
        /// Y坐标
        /// </summary>
        public float Y;
    }
 
    public class AndroidView
    {
        //是否是活动状态
        public static bool IsLive(Android.Views.View view)
        {
            return view.Enabled && view.Visibility == ViewStates.Visible && 0 < view.Alpha;
        }
    }
}