gpt4 book ai didi

google-glass - 从 gdk 卡打开 url 或调用浏览器

转载 作者:行者123 更新时间:2023-12-04 14:59:13 28 4
gpt4 key购买 nike

我正在尝试从要由玻璃浏览器打开的卡片中选择一个 url。有没有办法设置或调用它?

从我的检查中“获取 uri”的 Card API 用于渲染图像。
https://developers.google.com/glass/develop/gdk/reference/com/google/android/glass/app/Card#getImage(int)

最佳答案

您可以通过使用 ACTION_VIEW 启动事件来在内置浏览器中打开 URL。意图。例如:

String url = "http://www.whatever.com";
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);

关于google-glass - 从 gdk 卡打开 url 或调用浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21099152/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com