如何在 Android 中将度数符号设置为 TextView
?
How can I set the degree symbol to a TextView
in Android?
它的 unicode 值是 U+00B0 所以你可以这样做:
The unicode value for it is U+00B0 so you could do the following:
myTextView.setText ( "78" + (char) 0x00B0 );
这篇关于Android将度数符号设置为Textview的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!