How to add EXTRA_REFERRER to CustomTabsIntent builder in Chrome custom tab for Android
问题 I am using newly launched Chrome Custom tabs for android instead of using webviews. This is the link to their documentation Here is the code that shows how to use it. String url = ¨https://paul.kinlan.me/¨; CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder(); CustomTabsIntent customTabsIntent = builder.build(); customTabsIntent.launchUrl(this, Uri.parse(url)); Question is that I want to add Intent.EXTRA_REFERRER to this. below is the para copied from their blog in their own