Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Degrees symbol (as in Degrees Celsius/Fahrenheit) in a TextView

Is there a way to include the small circular degrees symbol to a TextView? This would be for temperature readings, as in degrees Celsius or Fahrenheit. I'm wondering if anyone has done this programmatically before.

like image 862
Aurora Avatar asked Jul 22 '10 18:07

Aurora


People also ask

How do you make a degree symbol in text?

These codes require you to hold down the Alt key and type a series of numbers on the numpad. The degree symbol code is Alt + 0176. As soon as you let go of the Alt key, the symbol should appear.

What is the symbol for degrees Celsius?

The degree Celsius (symbol: °C) can refer to a specific temperature on the Celsius scale or a unit to indicate a difference or range between two temperatures.


1 Answers

There is a Unicode symbol for Celsius degrees that you can use in Java: \u2103. For Fahrenheit you can use \u2109.

I have confirmed this works on Android Nexus S running Android version 2.3.6.

Example code:

temperatureValue.setText((result) + " \u2109"); 
like image 100
Luis Miguel Serrano Avatar answered Oct 06 '22 00:10

Luis Miguel Serrano