Android将度数符号设置为Textview

时间:2023-01-15
本文介绍了Android将度数符号设置为Textview的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 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模板网!

上一篇:将多个 TextView 保存为大分辨率图像 下一篇:如何在我的 TextView 中以粗体和多色显示文本

相关文章

最新文章