From 203c3a3ffde6259413d9743f6a723b95b1e7989c Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期四, 06 七月 2023 22:43:05 +0800
Subject: [PATCH] 门锁功能

---
 HDL-ON_Android/SplashActivity.cs |  148 +++++++++++++++++++++++++++++++++++++++----------
 1 files changed, 118 insertions(+), 30 deletions(-)

diff --git a/HDL-ON_Android/SplashActivity.cs b/HDL-ON_Android/SplashActivity.cs
index 3c6626e..afcffdf 100644
--- a/HDL-ON_Android/SplashActivity.cs
+++ b/HDL-ON_Android/SplashActivity.cs
@@ -1,9 +1,13 @@
-锘縰sing System;
+锘縰sing System;
+using Android;
 using Android.App;
 using Android.Content;
 using Android.Content.PM;
+using Android.Locations;
 using Android.Net;
 using Android.OS;
+using Android.Support.V4.App;
+using Android.Support.V4.Content;
 using CN.Jpush.Android.Api;
 //using Android.Widget;
 using Com.Hdl.ON.Jpush.Androidjpush;
@@ -16,10 +20,14 @@
 
 namespace HDL_ON_Android
 {
-    [Activity(Theme = "@style/SplashTheme", MainLauncher = true, Name = "com.hdl.onpro.SplashActivity",ScreenOrientation = ScreenOrientation.Portrait) ]
+    [Activity(Theme = "@style/SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTask, Name = "com.hdl.onpro.SplashActivity", ScreenOrientation = ScreenOrientation.Portrait)]
     [IntentFilter(new string[] { "com.hdl.onpro.SplashActivity", Intent.ActionView })]
     public class SplashActivity : Activity
     {
+
+
+
+
         protected override void OnActivityResult(int requestCode, Result resultVal, Intent data)
         {
             if (requestCode == 99)
@@ -41,25 +49,44 @@
             base.OnActivityResult(requestCode, resultVal, data);
         }
 
-
+        [Obsolete]
         protected override void OnCreate(Bundle savedInstanceState)
         {
             base.OnCreate(savedInstanceState);
-
-          
 
             //Intent i = new Intent(this, typeof(BaseActivity));//Intent intent=new Intent( 璧峰缁勪欢瀵硅薄 , 鐩爣 Service.class);
             //StartActivityForResult(i, 1);
             //OverridePendingTransition(0, 0);
             //initAll();
-
-
-
             if (HDL_ON.OnAppConfig.Instance.FirstRunApp || !HDL_ON.OnAppConfig.Instance.isAgreePrivacyPolicy)
             {
-                
+                Language.CurrentLanguage = "Chinese";
+                Locale locale1 = Locale.Default;
+                var localeList = Resources.Configuration.Locale;
+                Console.WriteLine("褰撳墠璇█缂╁啓:" + localeList.Language);
+                if (localeList.Language == "zh")
+                {
+                    Language.CurrentLanguage = "Chinese";
+                }
+                else if (localeList.Language == "es")
+                {
+                    Language.CurrentLanguage = "Spanish";
+                }
+                else if (localeList.Language == "ru")
+                {
+                    Language.CurrentLanguage = "russian";
+                }
+                else if (localeList.Language == "bg")
+                {
+                    Language.CurrentLanguage = "斜褗谢谐邪褉褋泻懈";
+                }
+                else
+                {
+                    Language.CurrentLanguage = "English";
+                }
+
                 Intent intent = new Intent(this, typeof(AgreementActivity));
-                StartActivityForResult(intent,99);
+                StartActivityForResult(intent, 99);
             }
             else
             {
@@ -71,8 +98,26 @@
                 initOhterSdk();
                 Finish();//鍏抽棴鑷繁
             }
-
         }
+
+
+        public void Permissions()
+        {
+            string[] mPermissionList = new string[]
+            {
+                Manifest.Permission.ReadSms
+            };
+
+            foreach (string permissions in mPermissionList)
+            {
+                if (ContextCompat.CheckSelfPermission(this, permissions) != 0)
+                {
+                    ActivityCompat.RequestPermissions(this, new string[] { permissions }, 1);
+                }
+            }
+        }
+
+
 
         void initOhterSdk()
         {
@@ -85,8 +130,10 @@
             //#endif
             JPushInterface.Init(this);
 
+            Com.Chteam.Agent.BuglyAgentHelper.Init(this.ApplicationContext, "316a8f5d83");
+            
 
-            BaseActivity.OnCreateActoin = (activity, application) =>
+            BaseActivity.OnCreateActoin += (activity, application) =>
             {
                 //鑾峰彇鏋佸厜鎺ㄩ�両D
                 GetJPushRegistrationID(activity);
@@ -138,23 +185,27 @@
                 }
             };
 
-            BaseActivity.OnCreateActoin = (activity, application) =>
+            BaseActivity.OnCreateActoin += (activity, application) =>
             {
                 Language.CurrentLanguage = "Chinese";
                 Locale locale1 = Locale.Default;
                 var localeList = Resources.Configuration.Locale;
-                Console.WriteLine("999999999999999999999999999999999999999999999"+ localeList.Language);
+                Console.WriteLine("褰撳墠璇█缂栧彿" + localeList.Language);
                 if (localeList.Language == "zh")
                 {
                     Language.CurrentLanguage = "Chinese";
                 }
-                else if(localeList.Language == "es")
+                else if (localeList.Language == "es")
                 {
                     Language.CurrentLanguage = "Spanish";
                 }
                 else if (localeList.Language == "ru")
                 {
                     Language.CurrentLanguage = "russian";
+                }
+                else if (localeList.Language == "bg")
+                {
+                    Language.CurrentLanguage = "斜褗谢谐邪褉褋泻懈";
                 }
                 else
                 {
@@ -176,19 +227,19 @@
                     //}
                     //else
                     //{
-                    //    Console.WriteLine("HHH 缃戠粶鍙樺寲浣嗗浜庡悗鍙�");
+                    //Console.WriteLine("HHH 缃戠粶鍙樺寲浣嗗浜庡悗鍙�"+internetStatus);
                     //}
 
                     //缃戠粶鍙樺寲澶勭悊
                     HDLCommon.Current.UpdateInternetStatus((int)internetStatus, MainPage.IsEnterBackground);
                 };
             };
-            BaseActivity.RefreshUIAction = (activity) =>
+            BaseActivity.RefreshUIAction += (activity) =>
             {
                 Language.CurrentLanguage = "Chinese";
                 Locale locale1 = Locale.Default;
                 var localeList = Resources.Configuration.Locale;
-                Console.WriteLine("999999999999999999999999999999999999999999999" + localeList.Language);
+                Console.WriteLine("褰撳墠璇█锛�" + localeList.Language);
                 if (localeList.Language == "zh")
                 {
                     Language.CurrentLanguage = "Chinese";
@@ -201,6 +252,10 @@
                 {
                     Language.CurrentLanguage = "russian";
                 }
+                else if (localeList.Language == "bg")
+                {
+                    Language.CurrentLanguage = "斜褗谢谐邪褉褋泻懈";
+                }
                 else
                 {
                     Language.CurrentLanguage = "English";
@@ -208,11 +263,11 @@
                 MainPage.Show();
                 checkSomeInfo();
             };
-            BaseActivity.OnResumeAction = (activity) =>
+            BaseActivity.OnResumeAction += (activity) =>
             {
                 checkSomeInfo();
             };
-            BaseActivity.OnDestroyAction = (activity) =>
+            BaseActivity.OnDestroyAction += (activity) =>
             {
                 Console.WriteLine("OnDestroyAction");
                 //BusSocket.Stop();
@@ -223,7 +278,11 @@
             HDLUtils.SetAuthoritiesName("com.hdl.onpro.fileProvider");
 
             //Shared.Application.IsGpsEnable = true;
-            bool isfirst = true;
+            //bool isfirst = true;
+
+
+
+            var isfirst = true;
             //鑾峰彇缁忕含搴� 
             Shared.Application.LocationAction = (lon, lat) =>
             {
@@ -232,12 +291,11 @@
                     if (isfirst)
                     {
                         //鍙Е鍙戜竴娆�
-                        //Shared.Application.LocationAction = null;
                         new HDL_ON.DAL.Server.HttpServerRequest().GetCityWeatherInfo(lon.ToString().Replace(",", "."), lat.ToString().Replace(",", "."));
                     }
                     isfirst = false;
                     ///鐩戝惉缁忕含搴�
-                    HDL_ON.UI.UI2.Intelligence.Automation.LogicMethod.CurrLogicMethod.AppLatAndLonEvent(lon, lat);
+                    HDL_ON.UI.UI2.Intelligence.Automation.LogicMethod.Current.AppLatAndLonEvent(lon, lat);
                     //鍏抽棴瀹氫綅鏈嶅姟
                     //Shared.Application.StopGPSLocationService();
                 }
@@ -249,6 +307,8 @@
             };
         }
 
+        
+
         /// <summary>
         /// 
         /// </summary>
@@ -259,7 +319,7 @@
             {
                 //淇濆瓨鑾峰彇鐨勬瀬鍏夋湇鍔″櫒涓婄殑娉ㄥ唽ID鍒版湰鍦版枃浠�
                 var tokenID = JPushInterface.GetRegistrationID(activity);
-                Console.WriteLine("RegistrationID1:  " + tokenID);
+                Console.WriteLine("RegistrationID:  " + tokenID);
                 if (!string.IsNullOrEmpty(tokenID) && OnAppConfig.Instance.PushDeviceToken != tokenID)
                 {
                     OnAppConfig.Instance.PushDeviceToken = tokenID;
@@ -280,7 +340,7 @@
                             break;
                         }
                     }
-                    Console.WriteLine("RegistrationID2:  " + tokenID);
+                    Console.WriteLine("RegistrationID:  " + tokenID);
                     if (!string.IsNullOrEmpty(tokenID) && OnAppConfig.Instance.PushDeviceToken != tokenID)
                     {
                         OnAppConfig.Instance.PushDeviceToken = tokenID;
@@ -297,7 +357,7 @@
         }
 
         public static bool IsShowTip = true;
- 
+
         void checkSomeInfo()
         {
             try
@@ -354,9 +414,37 @@
             return false;
         }
 
+
+
+
+
+        // 鍦ㄤ綘鐨勬椿鍔紙Activity锛夋垨鐗囨锛團ragment锛変腑鐨勬煇涓柟娉曚腑锛屽紑濮嬬洃鍚綅缃彉鍖�
+        void StartLocationUpdates()
+        {
+            // 鍒涘缓浣嶇疆绠$悊鍣�
+            var locationManager = (LocationManager)GetSystemService(Context.LocationService);
+
+            // 璁剧疆浣嶇疆鐩戝惉鍣�
+            var locationListener = new MyLocationListener_V2();
+
+            // 璇锋眰浣嶇疆鏇存柊
+            locationManager.RequestLocationUpdates(LocationManager.GpsProvider, 0, 0, locationListener);
+        }
+
+        // 鍦ㄤ綘鐨勬椿鍔紙Activity锛夋垨鐗囨锛團ragment锛変腑鐨勬煇涓柟娉曚腑锛屽仠姝㈢洃鍚綅缃彉鍖�
+        void StopLocationUpdates()
+        {
+            // 鍒涘缓浣嶇疆绠$悊鍣�
+            var locationManager = (LocationManager)GetSystemService(Context.LocationService);
+
+            // 璁剧疆浣嶇疆鐩戝惉鍣�
+            var locationListener = new MyLocationListener_V2();
+
+            // 鍋滄浣嶇疆鏇存柊
+            locationManager.RemoveUpdates(locationListener);
+        }
+
+
+
     }
-
-
-    
-
 }
\ No newline at end of file

--
Gitblit v1.8.0