问题
How can I set the degree symbol to a TextView
in Android?
回答1:
The unicode value for it is U+00B0 so you could do the following:
myTextView.setText ( "78" + (char) 0x00B0 );
来源:https://stackoverflow.com/questions/3439517/android-set-degree-symbol-to-textview