StringBlock: escape chars in style tags.

This commit is contained in:
Ryszard Wiśniewski 2010-08-29 21:20:15 +02:00
parent 719a25afd6
commit 285ee0a146

View File

@ -199,7 +199,8 @@ public class StringBlock {
val = tag.substring(pos2 + 1); val = tag.substring(pos2 + 1);
} }
builder.append(val).append('"'); builder.append(AndrolibResources.escapeCharsForResXml(val))
.append('"');
} }
} }
} }