我正在尝试使用“自定义标签”加载Web网址。
我正在使用以下版本的custom tabs
implementation 'com.android.support:customtabs:27.1.1'
问题在于它一直在打开chrome网络浏览器,而不是下图所示的自定义标签类型的布局。
这是我的代码。
public void createCustomTab(String url){
// CustomTabsIntent.Builder used to configure CustomTabsIntent.
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
// CustomTabsIntent used to launch the URL
CustomTabsIntent customTabsIntent = builder.build();
// Open the Custom Tab
customTabsIntent.launchUrl(eContext, Uri.parse(url));
}
我正在Lollipop device
上尝试此操作,而我当前的目标SDK是27