1

我正在尝试使用 HTML 页面创建一个超过 3 个级别的树结构(Bundle Cover -> Bundled Cards -> Menu Items)。

我有一捆带有封面的卡片,它们都使用setText().

然后,我将其中一张卡片更改为setHtml()not,setText()并使用 Playground 中的 HTML 模板进行测试。

然后我使用ArrayList<String>. 使用操场,我得到下面的卡片。当我在 Glass 上访问时,我得到“意外停止”。

这绝对是一个错误,但我想知道是否有计划允许这个 4 级树(Bundle Cover -> HTML Cover -> HTML Pages -> 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"
  }
}
4

1 回答 1

1

你是对的,如果你同时尝试对包进行分页和线程,你会得到一些不稳定的行为。您会看到捆绑包的封面,但按下它后,Glass 会报告意外停止。

它没有明确说明您不能在文档中执行此操作,并且我们可以期望它在将来会起作用,即使它现在不起作用,基于...

您的确切问题已在问题跟踪器中报告为错误:

https://code.google.com/p/google-glass-api/issues/detail?id=77

我会去为那个问题加注星标并等待更新。同时,您将不得不忍受分页或线程的 3 级嵌套。在未来,似乎有四个级别是可能的,如下所示:

封面 -> 捆绑包中的项目 -> 他们的页面 -> 他们的动作

于 2013-06-12T21:16:03.287 回答