我正在使用chrome CustomTab
在我的应用内打开网址,使用customTabsIntent.launchUrl
方法和CustomTabsIntent.Builder
。这就是我现在正在做的事情:
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(someUrl);
有没有办法在CustomTab
中禁用默认设置的swipetorefresh行为?通过修改构建器或其他东西? (不对网站进行任何更改)