0

所以我想要实现的是以下几点:

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

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

应用程序 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));

应用程序 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 变体

4

1 回答 1

0

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

因此,在 App 1 中,将以下内容添加到我的主要活动的 onCreate 中就可以了:

if (!isTaskRoot()) {
    finish();
    return;
}
于 2021-10-04T10:31:16.253 回答