I'm using chrome CustomTab
to open a url inside my app, using customTabsIntent.launchUrl
method and CustomTabsIntent.Builder
. Here's how I'm doing it right now:
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(someUrl);
is there any way to disable the swipetorefresh behaviour that is set by default, in the CustomTab
? by modifying the builder or something? (without making any changes to the website)