From 301d3f15ba03ff942c029bd4c0b1ff544f7cfede Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期三, 30 十二月 2020 11:19:48 +0800
Subject: [PATCH] 2020-12-30 1.解决RGB灯,色盘ColorPicker部分安卓手机,刷新图片时会变小问题

---
 HDL_ON/UI/UI2/UserPage.cs |   29 +++++++++++++++++++++--------
 1 files changed, 21 insertions(+), 8 deletions(-)

diff --git a/HDL_ON/UI/UI2/UserPage.cs b/HDL_ON/UI/UI2/UserPage.cs
index 61db3e3..858b95c 100644
--- a/HDL_ON/UI/UI2/UserPage.cs
+++ b/HDL_ON/UI/UI2/UserPage.cs
@@ -2,6 +2,7 @@
 using HDL_ON.Entity;
 using Shared;
 using HDL_ON.UI.CSS;
+using HDL_ON.DAL.Server;
 
 namespace HDL_ON.UI
 {
@@ -17,6 +18,7 @@
         /// 鍐呭鍖哄煙
         /// </summary>
         FrameLayout ContextView;
+        //VerticalRefreshLayout ContextView;
         /// <summary>
         /// 瀵艰埅鏍忓尯鍩�
         /// </summary>
@@ -128,8 +130,11 @@
                 ContextView.AddChidren(homePage);
                 homePage.LoadPage();
 
-                //鍒锋柊鍔熻兘鐘舵��
-                DB_ResidenceData.residenceData.RefreshResidenceFunctionStatus();
+                //娉ㄥ唽鎺ㄩ�両D
+                RegisteredPush();
+                //2020-12-07 澧炲姞鐗堟湰妫�娴嬫洿鏂版柟娉�
+                HDLCommon.Current.CheckIfNeedForceUpdate();
+
             }
             catch (Exception ex)
             {
@@ -303,9 +308,9 @@
         /// <summary>
         /// 鍒囨崲鍒版敹钘忕晫闈�
         /// </summary>
-        void ChooseCollection()
+        void ChooseCollection(bool qiangzhishuaxin = false)
         {
-            if (CurAnimationEffect == 0)
+            if (CurAnimationEffect == 0 || qiangzhishuaxin)
             {
                 return;
             }
@@ -375,7 +380,7 @@
                 {
                     btnNavigationSelectionIcon.SetRotation(0f);
                 });
-            }) { IsBackground = true }.Start();
+            }) { IsBackground = true ,Priority = System.Threading.ThreadPriority.Highest}.Start();
             #endregion
             ContextView.RemoveAll();
             var homePage = new HomePage();
@@ -464,7 +469,7 @@
                     btnNavigationSelectionIcon.SetRotation(0f);
                 });
             })
-            { IsBackground = true }.Start();
+            { IsBackground = true, Priority = System.Threading.ThreadPriority.Highest }.Start();
             #endregion
             ContextView.RemoveAll();
             var classificaitionView = new ClassificationPage();
@@ -554,7 +559,7 @@
                     btnNavigationSelectionIcon.SetRotation(0f);
                 });
             })
-            { IsBackground = true }.Start();
+            { IsBackground = true, Priority = System.Threading.ThreadPriority.Highest }.Start();
             #endregion
             ContextView.RemoveAll();
             var intelligenceView = new IntelligencePage();
@@ -644,7 +649,7 @@
                     btnNavigationSelectionIcon.SetRotation(0f);
                 });
             })
-            { IsBackground = true }.Start();
+            { IsBackground = true, Priority = System.Threading.ThreadPriority.Highest }.Start();
             #endregion
 
             ContextView.RemoveAll();
@@ -652,5 +657,13 @@
             ContextView.AddChidren(personalCenterPage);
             personalCenterPage.LoadView();
         }
+
+        /// <summary>
+        /// 娉ㄥ唽鎺ㄩ��
+        /// </summary>
+        void RegisteredPush()
+        {
+            new HttpServerRequest().RegisteredPush();
+        }
     }
 }

--
Gitblit v1.8.0