我正在尝试在我的应用中实现自定义选项卡
https://developer.chrome.com/docs/android/custom-tabs/integration-guide/
我已经使用成功启动了网站
@OnClick(R.id.btn_launch)
void onLaunchBtnClick(){
String url = "https://paul.kinlan.me/";
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(this, Uri.parse(url));
}
但是,它每次都作为移动网站启动。如何在不让用户单击复选框的情况下强制它作为桌面站点启动?