如何为卡片对象设置颜色?
有一些关于支持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卡,我不知道该怎么做。