【发布时间】:2018-08-01 20:04:33
【问题描述】:
如何从在 android 中运行的统一应用程序访问和打开 google chrome 应用程序?我在这篇文章中看到了类似的解决方案:Open another app and pass in url 但它正在做 google plus。有人有任何线索吗?
【问题讨论】:
标签: c# android google-chrome unity3d
如何从在 android 中运行的统一应用程序访问和打开 google chrome 应用程序?我在这篇文章中看到了类似的解决方案:Open another app and pass in url 但它正在做 google plus。有人有任何线索吗?
【问题讨论】:
标签: c# android google-chrome unity3d
对于您发布的this 参考
你可以使用字符串com.android.chrome打开chrome app
bool success = openUrl("com.android.chrome", "https://YOUR_LINK");
【讨论】: