We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproduce markdown: 1234<span style="color:#ff0000">5678<span style="color:#ffff00">9012</span>3456</span>7890
1234<span style="color:#ff0000">5678<span style="color:#ffff00">9012</span>3456</span>7890
Expect: there are 2 colors in the string. Actual: only 1 color #ff0000 shown.
#ff0000
Cause: SpannableBuilder reverse the order of setSpan, so that outer effect #ff0000 will override the inner effect #ffff00
setSpan
#ffff00
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Reproduce markdown:
1234<span style="color:#ff0000">5678<span style="color:#ffff00">9012</span>3456</span>7890
Expect: there are 2 colors in the string.
Actual: only 1 color
#ff0000
shown.Cause: SpannableBuilder reverse the order of
setSpan
, so that outer effect#ff0000
will override the inner effect#ffff00
The text was updated successfully, but these errors were encountered: