How to set color to the card object?
There is some information about which are the support html tags, however i don´t know how to use it.
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);
The function setText don´t support spanned. Should I use style? There is some example of how do it? As i can´t use card with resource xml, i don´t know how to do it.