使用Chrome Custom Tabs加载网页可以有效的提升用户的体验
文章比较长,先放项目地址: PaperPlane
俗话说,没图说个那啥,先看实际效果。
所有的APP开发者都面临这样一个选择,当用户点击一个URL时,是应该用浏览器打开还是应该用应用内置的WebView打开呢?
两个选项都面临着一些问题。通过浏览器打开是一个非常重的上下文切换,并且是无法定制的。而WebView不能和浏览器共享数据并且需要需要手动去处理更多的场景。
Chrome Custom Tabs让APP在进行网页浏览时更多的控制权限,在不采用WebView的情况下,这既能保证Native APP和网页之间流畅的切换,又允许APP定制Chrome的外观和操作。可定义的内容如下:
并且,Chrome Custom Tabs允许开发者对Chrome进行预启动和网页内容的预加载,以此提升加载的速度。
如果页面的内容是由我们自己控制的,可以和Android组件进行交互,那么,WebView是一个好的选择,如果我们的应用需要打开外部的网站,那么推荐使用Chrome Custom Tabs,原因如下:
从Chrome 45版本开始,所有的Chrome用户都可以使用这项功能,目前仅支持Android系统。
完整的示例可以查看 https://github.com/GoogleChrome/custom-tabs-client 。包含了定制UI、连接后台服务、处理应用和Custom Tab Activity生命周期的可复用的类。
第一步当然是将 Custom Tabs Support Library 添加到工程中来。打开 build.gradle
文件,添加support library的依赖。
dependencies { ... compile 'com.android.support:customtabs:23.3.0' }
一旦Support Library添加项目成功了,我们就有两种可能的定制操作了:
UI的定制是通过使用 CustomTabsIntent 和 CustomTabsIntent.Builder 类完成的;而速度的提升则是通过使用 CustomTabsClient 链接Custom Tabs服务,预热Chrome和让Chrome知晓将要打开的URL实现的。
// 使用CustomTabsIntent.Builder配置CustomTabsIntent // 准备完成后,调用CustomTabsIntent.Builder.build()方法创建一个CustomTabsIntent // 并通过CustomTabsIntent.launchUrl()方法加载希望加载的url String url = ¨https://github.com/marktony¨; CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder(); CustomTabsIntent customTabsIntent = builder.build(); customTabsIntent.launchUrl(this, Uri.parse(url));
Chrome Custom Tabs一个很重要的功能就是我们能够改变地址栏的颜色,使之和我们应用的颜色协调。
// 改变toolbar的背景色。colorInt就是你想要指定的int值 builder.setToolbarColor(colorInt);
作为应用的开发者,我们对呈现在用户眼前的Chrome Custom Tab内的Action Button拥有完全的控制权。
在大部分的情况下,用户会执行最基础的操作像分享,或者是其他公共的Activity。
Action Button被表示为一个action button的图标和用户点击action button之后Chrome将要执行的pendingIntent。图标的高度一般为24dp,宽度一般为24-48dp。
// 向toolbar添加一个Action Button // ‘icon’是一张位图(Bitmap),作为action button的图片资源使用 // 'description'是一个字符串,作为按钮的无障碍描述所使用 // 'pendingIntent' 是一个PendingIntent,当action button或者菜单项被点击时调用。 // 在url作为data被添加之后,Chrome 会调用PendingIntent#send()方法。 // 客户端应用会通过调用Intent#getDataString()获取到URL // 'tint'是一个布尔值,定义了Action Button是否应该被着色 builder.setActionButton(icon, description, pendingIntent, tint);
Chrome浏览器拥有非常全面的action菜单,用户在浏览器内操作非常顺畅。然而,对于我们自己的应用,可能就不适合了。
Chrome Custom Tabs顶部有三个横向排列的图标,分别是“前进”、”页面信息”和”刷新“。在菜单的底部分别是”查找页面”和“在浏览器中打开”。
作为开发者,我们最多可以在顶部横向图标和底部菜单之间添加5个自定义菜单选项。
菜单项通过调用 CustomTabsIntent.Builder#addMenuItem )添加,title和用户点击菜单选项后Chrome调用的pendingIntent需要作为参数被传入。
builder.addMenuItem(menuItemTitle, menuItemPendingIntent);
许多的Android都会在Activity之间切换时使用自定义的视图进入和退出动画。Chrome Custom Tabs也一样,我们可以改变进入和退出动画,以此保持Chrome Custom Tabs和应用其他内容的协调性和一致性。
builder.setStartAnimations(this, R.anim.slide_in_right, R.anim.slide_out_left); builder.setExitAnimations(this, R.anim.slide_in_left, R.anim.slide_out_right);
默认情况下,当 CustomTabsIntent#launchUrl )被调用时会激活Chrome,加载URL。这会花费我们宝贵的时间并且影响流畅度。
Chrome团队了解用户对于流畅体验的渴望,所以他们在Chrome中提供了一个Service使我们的APP能够连接并且预热浏览器和原生组件。他们也把这种能力分享给了我们普通开发者,开发者能够告知Chrome用户访问页面的可能性。然后,Chrome就能完成如下的操作:
预热Chrome的步骤如下:
CustomTabsClient#bindCustomTabsService http://developer.android.com/reference/android/support/customtabs/CustomTabsClient.html#bindCustomTabsService(android.content.Context , java.lang.String, android.support.customtabs.CustomTabsServiceConnectio)) 方法简化了连接Custom Tabs服务的过程。
创建一个继承自 CustomTabsServiceConnection 的类并使用 onCustomTabsServiceConnected )方法获取 CustomTabsClient 的实例。在下一步中会用到此实例:
// 官方示例 // 客户端需要连接的Chrome的包名,取决于channel的名称 // Stable(发行版) = com.android.chrome // Beta(测试版) = com.chrome.beta // Dev(开发版) = com.chrome.dev public static final String CUSTOM_TAB_PACKAGE_NAME = "com.android.chrome"; // Change when in stable CustomTabsServiceConnection connection = new CustomTabsServiceConnection() { @Override publicvoidonCustomTabsServiceConnected(ComponentName name, CustomTabsClient client){ mCustomTabsClient = client; } @Override publicvoidonServiceDisconnected(ComponentName name){ } }; boolean ok = CustomTabsClient.bindCustomTabsService(this, mPackageNameToBind, connection);
// 我的示例 package com.marktony.zhihudaily.customtabs; import android.support.customtabs.CustomTabsServiceConnection; import android.content.ComponentName; import android.support.customtabs.CustomTabsClient; import java.lang.ref.WeakReference; /** * Created by Lizhaotailang on 2016/9/4. * Implementation for the CustomTabsServiceConnection that avoids leaking the * ServiceConnectionCallback */ public classServiceConnectionextendsCustomTabsServiceConnection{ // A weak reference to the ServiceConnectionCallback to avoid leaking it. private WeakReference<ServiceConnectionCallback> mConnectionCallback; publicServiceConnection(ServiceConnectionCallback connectionCallback){ mConnectionCallback = new WeakReference<>(connectionCallback); } @Override publicvoidonCustomTabsServiceConnected(ComponentName name, CustomTabsClient client){ ServiceConnectionCallback connectionCallback = mConnectionCallback.get(); if (connectionCallback != null) connectionCallback.onServiceConnected(client); } @Override publicvoidonServiceDisconnected(ComponentName name){ ServiceConnectionCallback connectionCallback = mConnectionCallback.get(); if (connectionCallback != null) connectionCallback.onServiceDisconnected(); } }
boolean warmup(long flags) )
预热浏览器进程并加重原生库文件。预热是异步进行的,返回值表示请求是否被接收。多个成功的请求都会返回true。
true
代表着成功。
boolean newSession(CustomTabsCallback callback) )
session用于在连续请求中链接mayLaunchUrl方法。CustomTabsIntent和tab互相联系。这里所提供的回调和已经创建成功的session相关。通过这个回调,任何关于已经成功创建的session的更新都会被接收到。返回session是否被成功创建。多个具有相同CustomTabsCallback或者null值的请求都会返回false。
boolean mayLaunchUrl(Uri url, Bundle extras, List otherLikelyBundles) )
CustomTabsSession方法告知浏览器未来可能导航到的url。 warmup() )方法应该先被调用。最有可能的url应该最先被指出。也可以选择性的提供可能加载的url的列表。列表中的数据被认为被加载的可能性小于最初的那一个,而且必须按照优先级降序排列。这些额外的url可能被忽略掉。所有之前对于这个方法的调用都会被去优先化。返回操作是否成功完成。
void onNavigationEvent(int navigationEvent, Bundle extras) )
在custom tab中,导航事件发生时被调用。‘navigationEvent int’是关于页面内的6个状态值之一。6个状态值定义如下:
/** * 页面开始加载时被发送 */ public static final int NAVIGATION_STARTED = 1; /** * 页面完成加载时被发送 */ public static final int NAVIGATION_FINISHED = 2; /** * 由于错误tab不能完成加载时被发送 */ public static final int NAVIGATION_FAILED = 3; /** * 在加载完成之前,加载因为用户动作例如点击了另外一个链接或者刷新页面 * 加载被中止时被发送 */ public static final int NAVIGATION_ABORTED = 4; /** * tab状态变为可见时发送 */ public static final int TAB_SHOWN = 5; /** * tab状态变为不可见时发送 */ public static final int TAB_HIDDEN = 6;
Custom Tabs通过带有key Extras的 ACTION_VIEW Intent来定制UI。这就意味着将要打开的页面会通过系统浏览器或者用户默认浏览器打开。
如果用户已经安装了Chrome并且是默认浏览器,它会自动的获取EXTRAS的值并提供一个定制化的UI。其他的浏览器使用Intent extras提供相同的定制UI也是有可能的。
所有支持Chrome Custom Tabs的Chrome浏览器都暴露了一个service。为了检测是否支持Chrome Custom Tabs,可以尝试着绑定service,如果成功的话,那么Customs Tabs可以成功的使用。
启用Chrome Custom Tabs后,我们看到了各种不同质量界别的实现效果。这里介绍一组实现优秀集成的最佳实践。
连接到Custom Tabs Service并预加载Chrome之后,通过Custom Tabs打开链接 最多可以节省700ms 。
在我们打算启用Custom Tabs的Activity的 onStart() ) 方法中连接 Custom Tabs service。连接成功后,调用 warmup() 方法。
Custom Tabs作为一个非常低优先级的进程,这也就意味着 它不会对我们的应用不会有任何的负面的影响 ,但是当加载链接时,会获得非常好的启动性能。
预渲染让内容打开非常迅速。所以,如果你的用户 至少有50%的可能性 打开某个链接,调用 mayLaunchUrl()
方法。
调用 mayLaunchUrl()
方法方法能使Custom Tabs预获取主页面所支持的内容并预渲染。这会最大程度的加快页面的加载速度。但是会不可避免的有 一点流量和电量的消耗 。
Custom Tabs非常的智能,能够感知用户是否在使用收费的网络或者设备电量不足,预渲染对设备的整体性能有负面的影响,在这样的场景下,Custom Tabs就不会进行预获取或者预渲染。所以,不用担心应用的性能问题。
尽管Custom Tabs对于大多数用户都是适用的,仍然有一些场景不适用,例如设备上没有安装支持Custom Tabs的浏览器或者是设备上的浏览器版本不支持Custom Tabs。
确保提供了备选方案以提供好的应用体验。打开默认浏览器或者引入WebView都是不错的选择。
通常,对于网站而言,追用访问的来源非常地重要。当加载了Custom Tabs时,通过设置referrer,让他们知晓我们正在给他们提高访问量。
intent.putExtra(Intent.EXTRA_REFERRER, Uri.parse(Intent.URI_ANDROID_APP_SCHEME + "//" + context.getPackageName()));
定制的动画能够使我们的应用切换到网页内容时更加地顺畅。 确保进场动画和出厂动画是反向的,这样能够帮助用户理解跳转的关系。
//设置定制的进入/退出动画 CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder(); intentBuilder.setStartAnimations(this, R.anim.slide_in_right, R.anim.slide_out_left); intentBuilder.setExitAnimations(this, android.R.anim.slide_in_left, android.R.anim.slide_out_right); //打开Custom Tab intentBuilder.build().launchUrl(context, Uri.parse("https://github.com/marktony"));
添加一个Action Button能够使用户更加理解APP的功能。但是,如果没有好的icon代表Action Button将要执行的操作,有必要创建一个带操作文字描述的位图。
牢记位图的最大尺寸为高度24dp,宽度48dp。
String shareLabel = getString(R.string.label_action_share); Bitmap icon = BitmapFactory.decodeResource(getResources(), android.R.drawable.ic_menu_share); // 为我们的BroadCastReceiver创建一个PendingIntent Intent actionIntent = new Intent( this.getApplicationContext(), ShareBroadcastReceiver.class); PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, actionIntent, 0); // 设置pendingIntent作为按钮被点击后将要执行的操作 intentBuilder.setActionButton(icon, shareLabel, pendingIntent);
牢记用户安装的浏览器中,支持Custom Tabs的数量可能不止一个。如果有不止一个浏览器支持Custom Tabs,并且没有任何一个浏览器被设置为偏好浏览器,需要询问用户如何打开链接
/** * 返回支持Custom Tabs的应用的包名 */ publicstaticArrayListgetCustomTabsPackages(Context context){ PackageManager pm = context.getPackageManager(); // Get default VIEW intent handler. Intent activityIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.example.com")); // 获取所有能够处理VIEW intents的应用 List resolvedActivityList = pm.queryIntentActivities(activityIntent, 0); ArrayList packagesSupportingCustomTabs = new ArrayList<>(); for (ResolveInfo info : resolvedActivityList) { Intent serviceIntent = new Intent(); serviceIntent.setAction(ACTION_CUSTOM_TABS_CONNECTION); serviceIntent.setPackage(info.activityInfo.packageName); // Check if this package also resolves the Custom Tabs service. if (pm.resolveService(serviceIntent, 0) != null) { packagesSupportingCustomTabs.add(info); } } return packagesSupportingCustomTabs; }
为应用添加一个设置选项,允许用户通过默认浏览器而不是Custom Tab打开链接。如果我们的应用在添加Custom Tabs之前,都是通过默认浏览器打开链接显得尤为重要。
Native应用可以处理一些url。如果用户安装了Twitter APP,在点击tweet内的链接时,她更加希望Twitter应用能够处理这些链接。
在应用内打开链接之前,检查手机里有没有其他APP能够处理这些url。
如果想要让用户感觉网页内容是我们应用的一部分,将toolbar的颜色设置为primaryColor。
如果想要让用户清楚的了解到已经离开了我们的应用,那就完全不要定义toolbar的颜色。
// 设置自定义的toolbar的颜色 CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder(); intentBuilder.setToolbarColor(Color.BLUE);
确保在overflow菜单中添加了一个分享的操作,在大多数的情况下,用户希望能够分享当前所见网页内容的链接,Custom Tabs默认没有添加分享的按钮。
// 在BroadCastReceiver中分享来自CustomTabs的内容 publicvoidonReceive(Context context, Intent intent){ String url = intent.getDataString(); if (url != null) { Intent shareIntent = new Intent(Intent.ACTION_SEND); shareIntent.setType("text/plain"); shareIntent.putExtra(Intent.EXTRA_TEXT, url); Intent chooserIntent = Intent.createChooser(shareIntent, "Share url"); chooserIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(chooserIntent); } }
自定义关闭按钮使CustomTabs看起来像你应用的一部分。
如果你希望CustomTabs在用户看来像一个Dialog, 使用’x’(叉叉)按钮。如果你希望Custom Tab是用户的一部分,使用返回箭头。
//设置自定义的关闭按钮 CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder(); intentBuilder.setCloseButtonIcon(BitmapFactory.decodeResource( getResources(), R.drawable.ic_arrow_back));
当监听到链接是由 android:autoLink 生成的或者在WebView中复写了click方法,确保我们的应用处理了这些内容的链接,让CustomTabs处理外部链接。
WebView webView = (WebView)findViewById(R.id.webview); webView.setWebViewClient(new WebViewClient() { @Override publicbooleanshouldOverrideUrlLoading(WebView view, String url){ return true; } @Override publicvoidonLoadResource(WebView view, String url){ if (url.startsWith("http://www.example.com")) { //Handle Internal Link... } else { //Open Link in a Custom Tab Uri uri = Uri.parse(url); CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder(mCustomTabActivityHelper.getSession()); //Open the Custom Tab intentBuilder.build().launchUrl(context, url)); } } });
如果希望在用户点击链接和打开CustomTabs之间做一些准备工作,确保所花费的时间不超过100ms。否则用户会认为APP没有响应,可能是试着点击链接多次。
如果不能避免延迟,确保我们的应用对可能的情况做好准备,当用户点击相同的链接多次时,不要多次打开CustomTab。
尽管整合Custom Tabs的推荐方式是使用Custom Tabs Support Library,低API版本的系统也是可以使用的。
完整的Support Library的导入方法可以参见 GitHub ,并可以做为一个起点。连接service的 AIDL文件 也被包含在其中,Chromium仓库中也包含了这些文件,而这些文件在Android Studio中是不能直接被使用的。
String url = ¨https://github.com/marktony¨; Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); private static final String EXTRA_CUSTOM_TABS_SESSION = "android.support.customtabs.extra.SESSION"; Bundle extras = new Bundle; extras.putBinder(EXTRA_CUSTOM_TABS_SESSION, sessionICustomTabsCallback.asBinder() /* 不需要session时设置为null */); intent.putExtras(extras);
UI定制是通过向ACTION_VIEW Intent添加Extras实现的。用于定制UI的完整的extras keys的列表可以在 CustomTabsIntent docs 找到。下面是添加自定义的toolbar的颜色的示例:
private static final String EXTRA_CUSTOM_TABS_TOOLBAR_COLOR = "android.support.customtabs.extra.TOOLBAR_COLOR"; intent.putExtra(EXTRA_CUSTOM_TABS_TOOLBAR_COLOR, colorInt);
Custom Tabs service和其他Android Service的使用方法相同。接口通过AIDL创建并且代理service类也会自动创建。
// 客户端需要连接的Chrome的包名,取决于channel的名称 // Stable(发行版) = com.android.chrome // Beta(测试版) = com.chrome.beta // Dev(开发版) = com.chrome.dev public static final String CUSTOM_TAB_PACKAGE_NAME = "com.chrome.dev"; // Change when in stable public static final String ACTION_CUSTOM_TABS_CONNECTION = "android.support.customtabs.action.CustomTabsService"; Intent serviceIntent = new Intent(ACTION_CUSTOM_TABS_CONNECTION); serviceIntent.setPackage(CUSTOM_TAB_PACKAGE_NAME); context.bindService(serviceIntent, mServiceConnection, Context.BIND_AUTO_CREATE | Context.BIND_WAIVE_PRIORITY);
如果我们的应用是面向国外用户的,那理所当然的,应该加入Chrome Custom Tabs的支持,这在很大程度上能够提升用户的体验。如果我们的应用只是面向国内用户,我的建议还是应该加上这项功能,毕竟,还是有部分用户安装了Chrome浏览器,当用户浏览到Custom Tab页面,应该也会像我一样,感觉到眼前一亮吧。
文章比较长,感谢你的阅读。