我正在尝试使用HTML页面创建超过3个级别的树结构(Bundle Cover - > Bundled Cards - > Menu Items)。
我有一副带有封面的卡片,可以使用setText()
显示所有内容。
然后我将其中一张卡片改为setHtml()
而不是setText()
,并使用操场上的HTML模板进行测试。
然后我使用ArrayList<String>
将HTML页面添加到该卡片中。在操场上,我拿到了下面的卡片。当我在Glass上访问时,我得到“意外停止。”
这绝对是一个错误,但我想知道是否有计划允许这个4级树(Bundle Cover - &gt; HTML Cover - &gt; HTML Pages - &gt; Menu Items)。
{
"kind": "mirror#timelineItem",
"id": "b599da0d-494c-4ac9-ac24-bb5bddc1a209",
"bundleId": "customBundle",
"created": "2013-06-12T17:32:30.636Z",
"updated": "2013-06-12T17:32:30.636Z",
"etag": "\"r3ghbVW9Rp1kDP4UexS05_pFx4E/T3Df9IBGUombFb5U_Y1rda4CWwM\"",
"html": "<article>\n <section>\n <div class=\"text-x-large\">\n <p class=\"yellow\">8:00<sub>PM</sub></p>\n <p>Dinner with folks tonight</p>\n </div>\n </section>\n <footer>\n <div>Their place</div>\n </footer>\n</article>\n",
"htmlPages": [
"<article>\n <section>\n <table class=\"align-justify\"> \n <tbody>\n <tr>\n <td>AAPL</td>\n <td>503.73</td>\n <td class=\"red\">-16.57 (3.18%)</td>\n </tr>\n <tr>\n <td>AMZN</td>\n <td>274.03</td>\n <td class=\"green\">+6.09 (2.27%)</td>\n </tr>\n <tr>\n <td>GOOG</td>\n <td>727.58</td>\n <td class=\"red\">-12.41 (1.68%)</td>\n </tr>\n </tbody>\n </table>\n </section>\n</article>\n",
"<article>\n <section>\n <ul class=\"text-x-small\">\n <li>Gingerbread</li>\n <li>Chocolate Chip Cookies</li>\n <li>Tiramisu</li>\n <li>Donuts</li>\n <li>Sugar Plum Gummies</li>\n </ul>\n </section>\n <footer>\n <p>Grocery list</p>\n </footer>\n</article>\n"
],
"menuItems": [
{
"action": "REPLY"
},
{
"id": "moreInfo",
"action": "CUSTOM",
"values": [
{
"displayName": "Get More Info",
"iconUrl": "https://MYAPP.appspot.com/static/images/drill.png"
}
]
},
{
"action": "TOGGLE_PINNED"
}
],
"notification": {
"level": "DEFAULT"
}
}
答案 0 :(得分:1)
你是对的,如果你尝试分页和线程捆绑,你会得到一些不稳定的行为。您将看到捆绑封面,但在按下它时,Glass会报告意外停止。
没有明确说明你不能在文档中做到这一点,我们可以期待它在将来工作,即使它现在不起作用,基于......
您的确切问题已被报告为问题跟踪器中的错误:
https://code.google.com/p/google-glass-api/issues/detail?id=77
我会明星那个问题并等待更新。与此同时,您将需要使用分页或线程三种级别的嵌套。在未来,似乎有四个级别可能如下:
封面 - &gt;捆绑中的项目 - &gt;他们的页面 - &gt;他们的行动