0
私はランチャーアプリケーションを開発しています。私がランチャー上にいるとき、私は自宅を押すと、アクティビティはアニメートされ、アクティビティの新しいインスタンスが開きます。ホームを押すときにホーム画面の操作を続けるだけで何ができますか?なぜ私のアンドロイドランチャーはホームプレスで再開します
<application
android:name=".BaseApplication"
android:allowBackup="true"
android:launchMode="singleTask"
android:clearTaskOnLaunch="true"
android:stateNotNeeded="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:launchMode="singleInstance"
android:excludeFromRecents="true"
android:windowSoftInputMode="adjustPan"
android:screenOrientation="sensorPortrait"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
...