Android 如何防止使用Chrome自定义选项卡打开的网页通过深度链接启动应用程序?

Android 如何防止使用Chrome自定义选项卡打开的网页通过深度链接启动应用程序?,android,deep-linking,chrome-custom-tabs,Android,Deep Linking,Chrome Custom Tabs,我正在构建一个android应用程序,在给定页面上允许用户打开网站上的页面。我使用chrome定制标签来实现这一点。 代码如下: String url = ¨https://website_containing_deep_link/¨; CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder(); CustomTabsIntent customTabsIntent = builder.build(); customTabsI

我正在构建一个android应用程序,在给定页面上允许用户打开网站上的页面。我使用chrome定制标签来实现这一点。 代码如下:

String url = ¨https://website_containing_deep_link/¨;
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(this, Uri.parse(url));
在特定网站上,应该呈现的页面包含启动特定第三方应用程序的深层链接

上述代码启动网站,但也启动第三方应用程序。 我可以将自定义选项卡配置为不启动深度链接吗