使用 App Links 跳转会关闭 CustomTab
Posted
技术标签:
【中文标题】使用 App Links 跳转会关闭 CustomTab【英文标题】:Jumping back with App Links closes CustomTab 【发布时间】:2021-11-19 20:13:04 【问题描述】:所以我想要达到的目标如下:
在 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));
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 变体
【问题讨论】:
【参考方案1】:问题是 CustomTab 正在启动它自己的活动,我必须确保 App 1 没有重绘。
所以在 App 1 中,将以下内容添加到我的主要活动的 onCreate 中就可以了:
if (!isTaskRoot())
finish();
return;
【讨论】:
以上是关于使用 App Links 跳转会关闭 CustomTab的主要内容,如果未能解决你的问题,请参考以下文章
jquery如何实现 在任何页面"登录"完毕成功后都要跳转会登录前的页面
css BB中的酷上一页/下一页按钮:https://beyondbeaver.com/add-custom-previous-next-links-on-blog-posts/