diff options
author | Christian Schneppe <christian@pix-art.de> | 2017-11-20 20:11:07 +0100 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2017-11-20 20:11:07 +0100 |
commit | 55e8f3b21568863dc66f4f2fe5955de2e62611ae (patch) | |
tree | b0929dabf2e3577813bd0592e5484d05da844e56 | |
parent | 8acab2f4c5905529170bc6329497decb86728c01 (diff) |
AndroidManifest use singleTop instead of singleTask to start new task when sharing
Diffstat (limited to '')
-rw-r--r-- | src/main/AndroidManifest.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml index 31ce67bd7..5705004af 100644 --- a/src/main/AndroidManifest.xml +++ b/src/main/AndroidManifest.xml @@ -87,7 +87,7 @@ android:name="de.pixart.messenger.ui.StartConversationActivity" android:configChanges="orientation|screenSize" android:label="@string/title_activity_start_conversation" - android:launchMode="singleTask"> + android:launchMode="singleTop"> <intent-filter> <action android:name="android.intent.action.SENDTO" /> <category android:name="android.intent.category.DEFAULT" /> @@ -132,7 +132,7 @@ android:name="de.pixart.messenger.ui.SetPresenceActivity" android:configChanges="orientation|screenSize" android:label="@string/change_presence" - android:launchMode="singleTask" + android:launchMode="singleTop" android:windowSoftInputMode="stateHidden|adjustResize" /> <activity android:name="de.pixart.messenger.ui.SettingsActivity" @@ -152,7 +152,7 @@ android:launchMode="singleTask" /> <activity android:name="de.pixart.messenger.ui.EditAccountActivity" - android:launchMode="singleTask" + android:launchMode="singleTop" android:windowSoftInputMode="stateHidden|adjustResize" /> <activity android:name="de.pixart.messenger.ui.ConferenceDetailsActivity" @@ -172,7 +172,8 @@ android:windowSoftInputMode="stateHidden" /> <activity android:name="de.pixart.messenger.ui.ShareWithActivity" - android:label="@string/app_name"> + android:label="@string/app_name" + android:launchMode="singleTop"> <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> |