我如何设置学位符号为Android中的TextView ?
TextView
它的unicode值是U + 00B0,所以你可以这样做:
myTextView.setText ( "78" + (char) 0x00B0 );