From ace942d3f082a8a9687cf65337ee1c342a5c9bd8 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期一, 10 一月 2022 11:09:32 +0800 Subject: [PATCH] 备份更新 --- HDL-ON_Android/SplashActivity.cs | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/HDL-ON_Android/SplashActivity.cs b/HDL-ON_Android/SplashActivity.cs index 5c1b1c3..de15654 100644 --- a/HDL-ON_Android/SplashActivity.cs +++ b/HDL-ON_Android/SplashActivity.cs @@ -1,6 +1,7 @@ 锘縰sing System; using Android.App; using Android.Content; +using Android.Content.PM; using Android.Net; using Android.OS; using CN.Jpush.Android.Api; @@ -15,7 +16,7 @@ namespace HDL_ON_Android { - [Activity(Theme = "@style/SplashTheme", MainLauncher = true, Name = "com.hdl.onpro.SplashActivity")] + [Activity(Theme = "@style/SplashTheme", MainLauncher = true, Name = "com.hdl.onpro.SplashActivity",ScreenOrientation = ScreenOrientation.Portrait) ] [IntentFilter(new string[] { "com.hdl.onpro.SplashActivity", Intent.ActionView })] public class SplashActivity : Activity { @@ -40,6 +41,7 @@ base.OnActivityResult(requestCode, resultVal, data); } + protected override void OnCreate(Bundle savedInstanceState) { base.OnCreate(savedInstanceState); @@ -49,7 +51,9 @@ //OverridePendingTransition(0, 0); //initAll(); - if (HDL_ON.OnAppConfig.Instance.FirstRunApp) + + + if (HDL_ON.OnAppConfig.Instance.FirstRunApp || !HDL_ON.OnAppConfig.Instance.isAgreePrivacyPolicy) { Intent intent = new Intent(this, typeof(AgreementActivity)); @@ -315,4 +319,6 @@ } + + } \ No newline at end of file -- Gitblit v1.8.0