66

I have implemented deep linking in my app. I added this intent filter in my manifest file, and the deep linking is working.

<intent-filter>
    <action android:name="android.intent.action.VIEW" /> 
    <category android:name="android.intent.category.DEFAULT" /> 
    <category android:name="android.intent.category.BROWSABLE" /> 
    <category android:name="android.intent.category.VIEW" /> 
    <data
        android:host="www.mywebsite.com"
        android:pathPrefix="/something"
        android:scheme="http" />
</intent-filter>

The problem is that through deep linking, my app is launching on top of current app. If I am in Gmail and I click a link, then my app is launching on top of Gmail. I want to launch my app differently.

If my app is already running in background and I click on a link in Gmail which redirects to my app, I will have two instances of my app running at the same time; one in the background, and another on top of Gmail. I want to run only one instance of my app at a time, so it's not also on top of the current app (Gmail). How can I do that?

Mike M.
  • 35,854
  • 7
  • 92
  • 90
HariRam
  • 2,740
  • 3
  • 20
  • 28
  • @commonsware As a curiosity, when your app was launched from Gmail, was it running in the same process as Gmail or was a new process created for it? So, if you have two instances of your app, will there be two new processes? – ARK May 03 '16 at 16:40

9 Answers9

84

You need to do following things for your Activity in your Manifest.

android:launchMode="singleTask"

This tells the system to always launch the existing instance of the Activity if it is already created.

And you can handle the Intent then by overriding the method

onNewIntent 

See http://developer.android.com/guide/topics/manifest/activity-element.html for more information.

Micky
  • 5,411
  • 7
  • 26
  • 54
  • 4
    What if the app is opened and currently displaying at activity A, but the deeplink points to activity B? – ULazdins Jul 25 '16 at 07:12
  • 5
    If activity B has `singleTask` set, all Activities above in the stack will be destroyed, if B is already created. So activity A will be destroyed. If activity B is not yet in the stack, it will be opened on top of activity A. – Micky Jul 25 '16 at 11:39
  • Thanks for the tips ! :-) – bottus Feb 28 '17 at 11:20
  • It works but if the open is opened in background and then again if I try to launch the app using the launcher icon then it again restarts instead of resume which is a disadvantage. – MrinmoyMk Apr 24 '20 at 16:18
12

the accepted answer didn't work for me, here is what did:

intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
finish();

from the official doc:

If set, and the activity being launched is already running in the current task, then instead of launching a new instance of that activity, all of the other activities on top of it will be closed and this Intent will be delivered to the (now on top) old activity as a new Intent.

user3453281
  • 549
  • 5
  • 12
  • 5
    Not working... it is still creating two instances of my app activity – htafoya Jan 11 '16 at 17:30
  • Had the same issue. you can see my answer at http://stackoverflow.com/questions/35776907/android-activity-launch-mode-and-deeplink-issue/35838002#35838002 – GuyZ Jan 02 '17 at 07:06
5

Well we had several issues with deeplinks. Like:

  1. click on the same link twice only, first click triggered the correct view
  2. opened multiple instances
  3. Links in whatsapp or facebook opened a view in whatsapp itself because of their web browser.
  4. on android 6 opened only one instance, but was only handling the first intent, second and third opens app but no action because the intentdata did not changed somehow.

So the following is not an clear answer to the question more an allround solution for several issues we had.

Our solution:

a) Created a new FragmentActivity

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main2); //well can be anything some "loading screen"

    Intent intent = getIntent();
    String intentUrl = intent.getDataString();
    Intent newIntent = new Intent(this, MainActivity.class);
    newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
    newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    newIntent.putExtra("intentUrl",intentUrl);
    newIntent.setAction(Long.toString(System.currentTimeMillis()));

    startActivity(newIntent);
    finish();
}

b) Manifest:

    <activity
        android:name="YOUR.NEW.FRAGMENT.ACTIVITY"
        android:label="@string/app_name"
        android:launchMode="singleTop">
        <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="scheme1" /> <!-- sheme1://-->
            <data android:host="yourdomain.com" />
            <data android:host="www.yourdomain.com" />
        </intent-filter>
    </activity>

c) handle the passed new intent in your activities onCreate() and onResume() by calling the following example function:

private void handleUrl(Intent i){
    String intentUrl = null;
    if (i != null) {
        intentUrl = i.getStringExtra("intentUrl");
        if (intentUrl == null){
            //hmm intent is damaged somehow
        } else {
            //because of onResume()
            if ( i.getBooleanExtra("used",false) ) {
                return;
            }
            i.putExtra("used", true);

           //DO SOMETHING WITH YOUR URL HERE
    }       
}
  • This works great when MainActivity is managed by a NavHost (which seems to ignore singleTask/singleInstance when launched from another app) – Angel Koh Jul 03 '20 at 13:44
3

I had this exact same problem, except I wanted the user to land back in the main task with the full back stack, as though they had just used the app switcher to move to my app. To accomplish this I had to reorder tasks.

1) Give my app permission to re-order tasks

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.company.app">
     <uses-permission android:name="android.permission.REORDER_TASKS"/>
</manifest>

2) Keep track of what the main task ID is

public class MainActivity {
    public static int mainTaskId;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
         super(savedInstanceState);
         //set the main task ID
         taskId = getTaskId();
    } 
}

3) When my deep link activity is launched it saves some data for use later and then brings the main task to the front

public class DeepLinkActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super(savedInstanceState);

        //persist deep link data
        Uri uri = intent.getData();
        String action = intent.getAction();
        saveForLater(uri, action);

        if(isTaskRoot()){
            //I'm in my own task and not the main task
            final ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
            activityManager.moveTaskToFront(MainActivity.taskId, ActivityManager.MOVE_TASK_NO_USER_ACTION);
            }
        }
    }
}

4) When whatever activity is at the top of the main task's back stack starts, it checks if there's any saved data to work on, and works on it.

etherton
  • 874
  • 2
  • 8
  • 20
3

I solve these issue by just add android:launchMode="singleTask" in AndroidManifest.xml file

Gk Mohammad Emon
  • 2,407
  • 2
  • 20
  • 28
  • It works but if the open is opened in background and then again if I try to launch the app using the launcher icon then it again restarts instead of resume which is a disadvantage. – MrinmoyMk Apr 24 '20 at 16:22
2

just solve this issue for only one Instance

android:launchMode="singleInstance"

<activity
    android:name=".SplashScreen"
    android:screenOrientation="portrait"
    android:launchMode="singleInstance"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <intent-filter android:autoVerify="true">
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data android:scheme="nvd.abc" />
    </intent-filter>
</activity>
tej shah
  • 2,815
  • 2
  • 20
  • 30
  • 2
    SingleTask is not always correct. please read the definition of singleInstance. you should use singletask not singleinstance if your app doesnt expose a single activity. See aswer from Alf below – Emil Jul 13 '17 at 00:57
0

Consider using finish() when leaving the deep link Activity, so if the deep link is operated again the activity will be recreated. This can avoid errors and contradictions.

SO 80
  • 111
  • 8
0

After going through with different solutions available on multiple platforms. Here is my solution for best practise for handling Deep linking in your app.

First create a separate Activity to handle your deep links intents for eg. DeepLinkHandlerActivity.

Make sure you specify this Activity in manifest as follows:

<activity android:name=".DeepLinkHandlerActivity"
            android:launchMode="singleTask">
            <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:host="www.xyz.com"
                    android:pathPrefix="/abc"
                    android:scheme="https" />
             </intent-filter>

put this activity as "Single Task".

Next: Setup this new Activity as follow:

    class DeepLinkHandlerActivity : BaseActivity(){
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.whaterever_your_layout)
        handelIntent(intent)
    }

    override fun onNewIntent(intent: Intent?) {
        super.onNewIntent(intent)
        handelIntent(intent)
    }

    private fun handelIntent(intent: Intent?){
        intent?.setClass(this,SplashActivity::class.java)
        startActivity(intent)
    }
}

Note: SplashActivity is your default activity i.e. your launcher activity.

Launcher activity code eg.

    <activity
            android:name=".splash.SplashActivity"
            android:theme="@style/SplashTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

That's it! your deep link handling problem is solved!

binaryakash
  • 114
  • 6
-1

(initialize at the starting of class)

String itemInfo == "";

Basically compare the package name.

if(!itemInfo.equals(getItem(position).activityInfo.packageName)) 
{ 
    intent.setComponent(new ComponentName(getItem(position).activityInfo.packageName, 
                                          getItem(position).activityInfo.name));

    itemInfo = getItem(position).activityInfo.packageName;
    ((AxisUpiActivtiy) context).startActivityForResult(intent, RequestCodes.START_INTENT_RESPONSE);
}

this condition itemInfo.equals(getItem(position).activityInfo.packageName) is the important

Svenmarim
  • 2,909
  • 3
  • 17
  • 44
Meesha Tyagi
  • 1
  • 1
  • 1