如何在安卓系统中将度数符号设置为 a?TextView
TextView
它的 unicode 值为 U+00B0,因此您可以执行以下操作:
myTextView.setText ( "78" + (char) 0x00B0 );