Android recruit symbol icon for Textview

How to set degree symbol in TextView in Android?

+42
java android symbols android-textview
Aug 09 '10 at 11:29
source share
1 answer

The unicode value for it is U + 00B0, so you can do the following:

 myTextView.setText ( "78" + (char) 0x00B0 ); 
+110
Aug 09 '10 at
source share



All Articles