wxr
2023-04-11 cd70a2a8a2bdebf51259d8f39ed110a34b9be9e5
HDL-ON_Android/SplashActivity.cs
@@ -1,4 +1,4 @@
using System;
using System;
using Android.App;
using Android.Content;
using Android.Content.PM;
@@ -41,7 +41,7 @@
            base.OnActivityResult(requestCode, resultVal, data);
        }
        [Obsolete]
        protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
@@ -57,7 +57,31 @@
            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);
            }
@@ -86,7 +110,7 @@
            JPushInterface.Init(this);
            BaseActivity.OnCreateActoin = (activity, application) =>
            BaseActivity.OnCreateActoin += (activity, application) =>
            {
                //获取极光推送ID
                GetJPushRegistrationID(activity);
@@ -138,12 +162,12 @@
                }
            };
            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";
@@ -155,6 +179,10 @@
                else if (localeList.Language == "ru")
                {
                    Language.CurrentLanguage = "russian";
                }
                else if (localeList.Language == "bg")
                {
                    Language.CurrentLanguage = "български";
                }
                else
                {
@@ -176,19 +204,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 +229,10 @@
                {
                    Language.CurrentLanguage = "russian";
                }
                else if (localeList.Language == "bg")
                {
                    Language.CurrentLanguage = "български";
                }
                else
                {
                    Language.CurrentLanguage = "English";
@@ -208,11 +240,11 @@
                MainPage.Show();
                checkSomeInfo();
            };
            BaseActivity.OnResumeAction = (activity) =>
            BaseActivity.OnResumeAction += (activity) =>
            {
                checkSomeInfo();
            };
            BaseActivity.OnDestroyAction = (activity) =>
            BaseActivity.OnDestroyAction += (activity) =>
            {
                Console.WriteLine("OnDestroyAction");
                //BusSocket.Stop();
@@ -229,6 +261,7 @@
            {
                try
                {
                    if (isfirst)
                    {
                        //只触发一次
@@ -237,7 +270,7 @@
                    }
                    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();
                }
@@ -259,7 +292,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 +313,7 @@
                            break;
                        }
                    }
                    Console.WriteLine("RegistrationID2:  " + tokenID);
                    Console.WriteLine("RegistrationID:  " + tokenID);
                    if (!string.IsNullOrEmpty(tokenID) && OnAppConfig.Instance.PushDeviceToken != tokenID)
                    {
                        OnAppConfig.Instance.PushDeviceToken = tokenID;