安装后,Android显示多个启动图标

时间:2019-01-13 05:09:28

标签: android xml android-layout android-webview android-manifest

请确保我有一个具有3个以上android活动的android应用,一切正常,直到我添加了splashScreen活动,每个安装的应用或清除的数据仅显示一次。现在的问题是,当我安装应用程序时,我会在屏幕上看到两个午餐图标,这是不正常的。请任何人在以下帮助我的是我的活动及其用途。

SplashScreen :安装应用后,该应用内部将包含Webview。

SplashScreenOnload :每次应用午餐时,它将显示500毫秒并重定向到ApplicationMainActivity,内部没有Web视图。

ApplicationMainActivity :这是主要的应用活动,包含网页视图。

UriSchemActivity :这是用于提取网址方案,无Web视图。

PopLoginActivity :这是用于URL弹出窗口,在ApplicationMainActivity中单击的任何外部URL都将在此处打开,其中包含webview

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>

1 个答案:

答案 0 :(得分:1)

放入

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

很多地方都会引起您的问题!

您需要确定一个启动器活动