自固件更新XE7起,Glass会在搜索结果中添加“查看网站”操作。如何将此操作添加到我自己的时间轴卡中,以便它将使用任意URL打开Glass浏览器?
答案 0 :(得分:5)
将OPEN_URI
内置菜单项添加到时间轴项目,将网址添加到menuItem.payload
。时间轴项的JSON可能如下所示:
{
"text" : "Hello World!",
"menuItems" : [{
"action" : "OPEN_URI",
"payload" : "http://example.com"
}]
}
您可以在official documentation for this feature上了解有关内置菜单项的更多信息。