Android设置度数符号到Textview

我如何设置学位符号为Android中的TextView

它的unicode值是U + 00B0,所以你可以这样做:

 myTextView.setText ( "78" + (char) 0x00B0 );