Пожалуйста, у меня есть приложение для Android с активностью более 3-х андроидов, все работает нормально, пока я не добавил активность splashScreen, которая будет отображаться только один раз для каждого установленного приложения или очистки данных. Теперь проблема в том, что когда я устанавливаю приложение, я вижу два значка обеда на экране, который не является нормальным. Пожалуйста, кто-нибудь может мне помочь, ниже приведены мои действия и их использование.
SplashScreen : После установки приложения оно содержит веб-просмотр внутри.
SplashScreenOnload : каждый раз, когда приложение запускается, оно будет отображаться в течение 500 миллисекунд и перенаправляться на ApplicationMainActivity
, внутри веб-просмотр отсутствует.
ApplicationMainActivity : это основное действие приложения, оно содержит веб-просмотр.
UriSchemActivity : это для извлечения схемы URL, без веб-просмотра.
PopLoginActivity : это для всплывающего URL-адреса, здесь откроется любой внешний URL-адрес, нажатый в ApplicationMainActivity
, он содержит веб-просмотр
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.shop"
android:installLocation="auto">
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<application
android:hardwareAccelerated="true"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".SplashScreen"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="sensorPortrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".SplashScreenOnload"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="sensorPortrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ApplicationMainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:screenOrientation="sensorPortrait">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
<activity android:name=".UriSchemActivity"
android:screenOrientation="sensorPortrait">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:scheme="example" />
<data android:scheme="fs" />
<data android:host="www. example.com" />
<data android:host="example.com" />
<data android:pathPrefix="/app/www/" />
<data android:pathPrefix="/app/" />
<data android:pathPattern=".*" />
</intent-filter>
</activity>
<activity
android:name=".PopLoginActivity"
android:screenOrientation="sensorPortrait"
android:theme="@style/Theme.Transparent" />
<service android:name=".FcmMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id" />
</application>
</manifest>