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
hello~I want to let the color of my MathView's text become white,according to stackoverflow(The link is : https://stackoverflow.com/questions/41485618/how-can-i-change-the-color-of-text-of-a-mathview-which-is-basically-a-webview) ,I try:
MathView formula = findViewById(R.id.scan_result); formula.config( "MathJax.Hub.Config({\n"+ " { TeX: { extensions: ["color.js"] } }\n"+ "});" ); Then:
formula.setText("\(\color{white}{ax^2 + 7}\)");
it can show text as white.
but if i use some lateX which need symbol "$" like this: formula.setText("\(\color{white}{$$ax^2 + 7$$}\)");
it dose not work. Thanks if someone can help me.
The text was updated successfully, but these errors were encountered:
See pull request #69
Sorry, something went wrong.
jianzhongli
No branches or pull requests
hello~I want to let the color of my MathView's text become white,according to stackoverflow(The link is : https://stackoverflow.com/questions/41485618/how-can-i-change-the-color-of-text-of-a-mathview-which-is-basically-a-webview) ,I try:
MathView formula = findViewById(R.id.scan_result);
formula.config(
"MathJax.Hub.Config({\n"+
" { TeX: { extensions: ["color.js"] } }\n"+
"});"
);
Then:
formula.setText("\(\color{white}{ax^2 + 7}\)");
it can show text as white.
but if i use some lateX which need symbol "$" like this:
formula.setText("\(\color{white}{$$ax^2 + 7$$}\)");
it dose not work.
Thanks if someone can help me.
The text was updated successfully, but these errors were encountered: