SImulate Chrome 自定义标签回退

SImulate Chrome custom tabs fall back

我已经为我的应用程序成功实现了 Chrome 自定义标签,它在我的设备上运行良好。

CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
... customizing it here ...
CustomTabActivityHelper.openCustomTab(adapter.main, builder.build(), Uri.parse(url), new WebviewFallback());

我现在想模拟和测试失败情况,以防浏览器不受支持,它应该回退到我在上面的 WebviewFallback class 中指定的自定义 WebView。

最好的方法是什么?

您可以在您的设备上卸载您的 Chrome 应用程序,或者如果它作为系统应用程序安装,您只需将其禁用(设置 > 应用程序 > Chrome > 点击禁用) .