私はエミュレータ(および携帯電話)でアプリを実行し、ホーム画面に2つのショートカットを作成しています。アプリを削除すると、両方のショートカットが削除されます。Androidアプリはホーム画面に重複したショートカットを作成しています
私のアプリはsplash screen
にあります。その後、メイン画面に移動し、Androidスタジオを使用しています。
私は<intent-filter>
と関連していると思いますが、アプリを実行するたびに削除するたびに、両方とも<activity>
に自動的に表示されます。
マニフェストファイル:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.epicbit.tecnoprolab"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="23" />
<receiver android:name="receiver.NetworkChangeReceiver" >
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<application
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<!-- Splash screen -->
<activity
android:name="com.example.epicbit.tecnoprolab.SplashScreen"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.epicbit.tecnoprolab.MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
はEDIT:このビデオは、私はあなたのsugestionsに従うときが起こるかを理解するために チェック:
アンドロイドスタジオでRUNを押すと自動的に彼は再び追加: '<インテントフィルター> strong>アンドroid: intent-filter> ' 私のmainActivityに。なぜか分からない。 –
@CarlosBrancoあなたのアプリにライブラリを追加していますか?それとも何か?たぶん、Android Studioはマニフェストファイルを別のものとマージしています... – W0rmH0le
私のプロジェクトはかなり小さいです。 http://i.imgur.com/2Lo80Yl.png これを確認してください。うーん、なぜこれが起こるのか分かりません。 –