如何设置Card对象上的文本颜色

时间:2013-12-18 14:37:12

标签: google-glass google-gdk

如何为卡片对象设置颜色?

有一些关于支持html标签的信息,但我不知道如何使用它。

 Card m_InstructionCard new Card(this);
 String texto = getString(R.string.instruction_card_text);
 m_InstructionCard.setText(Html.fromHtml(texto));       
 m_InstructionCard.setTimestamp(R.string.instruction_card_info);
 m_InstructionCard.addImage(R.drawable.second_capture);

函数setText不支持spanned。 我应该使用风格吗?有一些例子怎么做? 因为我不能使用资源xml卡,我不知道该怎么做。

1 个答案:

答案 0 :(得分:0)

Card.setText方法目前仅支持无格式String。如果您想查看其他功能,请在我们的issue tracker上提交增强请求。