使用 App Links 返回关闭 CustomTab

Jumping back with App Links closes CustomTab

所以我要实现的目标如下:

在 App 1 中,我在 CustomTab 中加载一个网站,该网站通过 App Links 跳转到 App 2。在 App 2 中,执行完一个任务后,我想跳回到 App 1,其中 CustomTab 仍然需要打开,因为它需要做一些处理。我有这个工作,我通过包名称跳回到应用程序 1,但我也需要通过应用程序链接让它工作。

但是,目前发生的情况是,当我通过 App Links 跳回时,CustomTab 似乎关闭了。我的第一个想法是我没有保留应用程序/正确启动 activity。

应用 1 的 AndroidManifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="my.secret.package.name">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:launchMode="singleTask"
            android:exported="true">
            <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="https"
                    android:host="some.secret.url" />
            </intent-filter>
        </activity>
    </application>

</manifest>

在 App 1 中打开 CustomTab:

        CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
        CustomTabsIntent customTabsIntent = builder.build();
        customTabsIntent.launchUrl(MainActivity.this, Uri.parse(url));

App 2 中跳转代码:

    private void performAppSwitch() {
        Intent intentWithURI = new Intent(Intent.ACTION_VIEW, Uri.parse(APP_LINKS_URL));
        PackageManager packageManager = context.getPackageManager();

        if (intentWithURI.resolveActivity(packageManager) != null) {
            intentWithURI.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(intentWithURI);
        } else {
            Intent intentWithPackageID = packageManager.getLaunchIntentForPackage(PACKAGE_NAME);

            if (intentWithPackageID != null) {
                List<ResolveInfo> activities = packageManager.queryIntentActivities(intentWithPackageID, 0);
                boolean isIntentSafe = !activities.isEmpty();

                if (isIntentSafe) {
                    intentWithPackageID.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                    context.startActivity(intentWithPackageID);
                }
            }
        }
    }

关于为什么它在我通过包名称切换时有效但在我通过应用链接切换时无效的任何想法? 我已经尝试了 launchMode

的所有可能变体

问题是 CustomTab 正在启动它自己的 activity,我必须确保 App 1 没有重绘。

所以在 App 1 中,将以下内容添加到我的主要 activity 的 onCreate 中就可以了:

if (!isTaskRoot()) {
    finish();
    return;
}