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
The text was updated successfully, but these errors were encountered:
切换到原生对齐则正常
Sorry, something went wrong.
解决办法: 在drawTextWithJustify方法中 currentLineOffsetY += getLineHeight(); 替换为: if(text_str.substring(layout.getLineStart(i), layout.getLineEnd(i)).contains("\n")){ currentLineOffsetY += 2*getLineHeight(); }else{ currentLineOffsetY += getLineHeight(); } 把段高度设置为行高度段两倍来填充多余的空白。不知道会不会有显示不全的bug先用着吧
No branches or pull requests
The text was updated successfully, but these errors were encountered: