(CharSequence newText, LabelStyle style)
| 26 | } |
| 27 | |
| 28 | public VLabel(CharSequence newText, LabelStyle style) { |
| 29 | super(append(newText, style), style); |
| 30 | fontCache = getBitmapFontCache(); |
| 31 | addText(newText); |
| 32 | setSize(getPrefWidth(), getPrefHeight()); |
| 33 | setColor(style.fontColor); |
| 34 | } |
| 35 | |
| 36 | private void addText(CharSequence newText) { |
| 37 | if (newText == null) newText = ""; |