0

我必须在我的 android 应用程序中添加数学和统计特殊字符、方程和图形。我怎样才能做到这一点?我可以在 TextView 或其他东西中添加这些吗?

谢谢。

4

1 回答 1

1

Yes, of course.

Since TextView in Android supports UTF-8, you can embed non typical characters such as :

TextView text_view = (TextView) this.findViewById(R.id.text_field);
text_view.setText("1 ≠ 2 ; 1 ÷ 1 = 1 ; ↦ ; ∑ ; ⋉, ⋊ ; ⋂ ; ∈");

And text_view defined as follow :

<TextView android:id="@+id/text_field"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>

You can find a list of the mathematical UTF-8 symbols on Wikipedia.

于 2013-05-22T16:29:13.797 回答