我正在使用 chromeCustomTab
在我的应用程序中打开一个 url,使用customTabsIntent.launchUrl
方法和CustomTabsIntent.Builder
. 这是我现在的做法:
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(someUrl);
有什么方法可以禁用默认设置的 swipetorefresh 行为CustomTab
?通过修改构建器或其他什么?(无需对网站进行任何更改)