How to display mathematical symbols, physics, chemistry equations in android?

I am developing a trivia app that can have mathematical, physical and chemical symbols as it is a real time game app every time the questions are downloaded from the server and shown for a specific topic. This must be a native Android app and the performance of the game is very important (two player game). If I use jqmath or mathml inside a webview as mentioned, it takes a little time to render, is there another android library, or should I use ndk c or c ++ libraries for performance (if so kindly call them that) or how can I improve performance with the web view itself or any other better idea please suggest?

+3


source to share


2 answers


A year later, I found a library that could do this quite efficiently and used it in the current project. This is a link to this great piece of Mathview work that you can easily incorporate into your own code.



+3


source


You seem to need a TeX-like system to create a math / physics / chemistry symbol and / or equations? If so, TeXLive4Android is well worth the test.



Or you can create a web service that uses TeX-like systems to generate a png image, check this post .

+1


source







All Articles