fix(ui): textStyle

This commit is contained in:
hyb1996
2018-03-21 17:50:49 +08:00
parent e7103b3187
commit d098c77827

View File

@@ -349,7 +349,7 @@ public class TextViewAttrSetter<V extends TextView> extends BaseViewAttrSetter<V
view.setTextScaleX(Dimensions.parseToPixel(value, view));
break;
case "textStyle":
mTextStyle = TEXT_STYLES.get(value);
mTextStyle = TEXT_STYLES.split(value);
break;
case "typeface":
mTypeface = value;