所以我在编程方面仍然很安静,但我很好奇制作公式表的最佳做法是什么。当然,它只是布局中的直字,字母和数字,但是这些数学公式中的一些具有很多字符,这些字符不能被textview读取。因此,我应该制作我在单词上制作的公式的截图,还是浪费太多的内存。还要放大和缩小我如何去做。
答案 0 :(得分:1)
在值文件夹中的string.xml文件中使用HTML代码。
<string name="superscript"><html><i>a</i><sup>2</sup>+<i>y</i><sup>2</sup></html></string>
<string name="subscript"><html>f(x)<sub>1+x</sub></html></string>
以xml布局
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/superscript" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/subscript" />
数学符号和字符的链接:
答案 1 :(得分:0)
关于外观,这是真的。但是,如果我想制作像拉普拉斯表一样的表,那么拥有一个图像会更好吗
答案 2 :(得分:0)
如果你习惯在android中使用webview,那么当然!您可以使用javascript库 jqMath 在网页上展示任意数量的数学方程式。 https://mathscribe.com/author/jqmath.html