Skip to content
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.

Commit

Permalink
support compiling underline for textStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
longerian committed Mar 30, 2018
1 parent 442bb53 commit aae1b23
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ public boolean parser(Parser.AttrItem item){
value |= TextBaseCommon.ITALIC;
} else if (TextUtils.equals("strike", str)) {
value |= TextBaseCommon.STRIKE;
} else if (TextUtils.equals("underline", str)) {
value |= TextBaseCommon.UNDERLINE;
} else {
Log.e(TAG, "invalidate value:" + str);
ret = false;
Expand Down

0 comments on commit aae1b23

Please sign in to comment.