|
@@ -1,6 +1,7 @@
|
|
|
package com.cooleshow.teacher.ui.splash
|
|
|
|
|
|
import android.animation.Animator
|
|
|
+import android.content.Intent
|
|
|
import android.net.Uri
|
|
|
import android.text.Spannable
|
|
|
import android.text.SpannableStringBuilder
|
|
@@ -55,6 +56,11 @@ class SplashActivity : BaseActivity<ActivitySplashLayoutBinding>() {
|
|
|
super.initData()
|
|
|
}
|
|
|
|
|
|
+ override fun onNewIntent(intent: Intent?) {
|
|
|
+ super.onNewIntent(intent)
|
|
|
+ checkPrivacyMode();
|
|
|
+ }
|
|
|
+
|
|
|
private fun checkPrivacyMode() {
|
|
|
var privacyMode = UserHelper.getAppPrivacyMode()
|
|
|
if (privacyMode == 0) {
|