You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
官方文档描述,
NText的textStyle属性可以赋值enum(normal/bold/italic/strike/underline),
VText的textStyle属性可以赋值enum(norma/bold/italic/strike)。
在使用textStyle=“normal”时报错:VALUE ERROR:key=textStyle value=normal。
需要修改TextBaseParser和TextStyleValueParser,在其中添加对normal的判断:
if (!TextUtils.equals("normal", str)) {
Log.e(TAG, "invalidate value:" + str);
ret = false;
break;
}
The text was updated successfully, but these errors were encountered: