set the color for both textviews

This commit is contained in:
ligi 2013-02-12 00:16:30 +01:00
parent 714ef0c709
commit e8206ce265

View file

@ -36,11 +36,13 @@ public class PassbookVisualisationHelper {
icon_img.setBackgroundColor(passbookParser.getBgcolor());
tv.setTextColor(passbookParser.getFGcolor());
more_tv.setTextColor(passbookParser.getFGcolor());
tv.setText(passbookParser.getDescription());
String more_str = "";
if (passbookParser.getType() != null) {
for (PassbookParser.Field f : passbookParser.getPrimaryFields())
more_str += "<b>" + f.label + "</b>: " + f.value + "<br/>";