无法在自定义标签中打开youtube

时间:2017-02-26 14:57:09

标签: android youtube chrome-custom-tabs

我希望用户输入视频网址列表(youtube链接)。所以我考虑使用customtabs在选项卡中添加一个新的menuItem。

如果在用户Android设备中禁用或未安装youtube应用,则会使用我想要的youtube网址打开自定义标签。

但是随后安装了youtube app并启用了,然后当我在自定义标签中启动url时,启动了youtube app,这是我不想要的。我总是想在自定义标签中启动youtube网址。怎么实现呢?有什么建议吗?

1 个答案:

答案 0 :(得分:0)

如果是 Chrome浏览器,为了达到这个目的,请在Chrome中启动youtube网址之前,使用 Chrome浏览器设置 CustomTabsIntent 自定义标签。

intentCustomTabs.intent.setPackage("com.android.chrome");

有关详细实施,请从here查看,希望它会有所帮助。