我在阅读和展示数学和科学公式时遇到了问题。它们没有像下面给出的图像那样出现。我在TextView
中显示它,并使用setTypeface
将字体设置为“古吉拉特语”字体。
提前谢谢。
我想显示数学公式,如:
...还显示科学方程式:
并且,如何在Android中的SQLite数据库中读取Excel工作表和存储?我不使用.csv
,因为我将古吉拉特语数据存储在Excel中。
答案 0 :(得分:3)
您可以使用值文件夹中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:
<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" />
对于数学符号和字符,您可以查看以下链接:
http://en.wikipedia.org/wiki/Help:Displaying_a_formula
答案 1 :(得分:2)
对于Excel到SQLite3,快速搜索引导我:
How to convert excel sheet into database of sqlite in android
答案 2 :(得分:1)
答案 3 :(得分:0)
您可以使用ImageView并显示这些表达式的图像。这很容易。