同一应用的多个实例在堆栈中生成

时间:2018-11-30 06:14:20

标签: android app-launcher

如果有一个应用程序具有登录活动,并通过单击图标启动。此登录活动也可以由另一个意图启动。问题是活动正在运行时(通过触摸应用程序图标启动),并且当它接收到不同的意图调用时,它将启动另一个登录活动。

当收到不同的意图调用以启动登录活动时,如何在关闭当前正在运行的活动后再次启动登录活动。 上面提到的不同目的是,当用户选择具有特定扩展名的特定文件时,必须启动我的应用程序。

<activity
        android:name=".login.Login"
        android:configChanges="orientation|keyboardHidden"
        android:windowSoftInputMode="adjustResize">

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

        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.BROWSABLE" />
            <category android:name="android.intent.category.DEFAULT" />
            <data
                android:scheme="content"
                android:mimeType="application/octet-stream"
                android:pathPattern=".*\\.chat"
                tools:ignore="AppLinkUrlError" />
        </intent-filter>

    </activity>

第二个意图称为,我的应用程序下载选定的文件并将其存储在内部存储中。  这是登录活动中的onCreate方法

 public void onCreate(Bundle savedInstanceState) {

    if (getResources().getBoolean(R.bool.portrait_only)) {
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
    } else {
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    }
    super.onCreate(savedInstanceState);


    if (isTaskRoot()) {
        Uri data = getIntent().getData();
        if (data != null) {
            getIntent().setData(null);
            try {
                importData(data);
            } catch (Exception e) {
                // warn user about bad data here
                finish();
                return;
            }
        }
    }

 ...................................

}

当用户选择指定文件时,该应用程序启动另一个活动。那么堆栈中有两个登录活动。帮我摆脱这个问题

曾尝试过单任务解决方案。但是当launchingmode设置为singleinstance或singletask并且接收到第二个intent调用时,它不会调用

  

importData()

方法。因此我要下载的文件未下载。.

1 个答案:

答案 0 :(得分:0)

在这里,我使用“ singleTask”作为launchMode。然后,当再次调用Activity时,我必须使用onNewIntent()。下面的链接提供了更多说明。

“onCreate()” method is not called from another intent filter