开发者

Android set degree symbol to Textview [duplicate]

开发者 https://www.devze.com 2023-01-11 05:47 出处:网络
This question already has answers here: 开发者_C百科 Degrees symbol (as in Degrees Celsius/Fahrenheit) in a TextView
This question already has answers here: 开发者_C百科 Degrees symbol (as in Degrees Celsius/Fahrenheit) in a TextView (7 answers) Closed 9 years ago.

How can I set the degree symbol to a TextView in Android?


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

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

精彩评论

暂无评论...
验证码 换一张
取 消